Skip to content

Commit

Permalink
fixed php ini
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Jan 4, 2024
1 parent 7297bac commit b44e74f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[pytest]
env =
D:DB_CONFIG_PATH=config/database
D:DB_CONFIG_PATH=config/test-database
2 changes: 1 addition & 1 deletion tests/postgres/grammar/test_update_grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_update_null(self):
to_sql = self.builder.update({"name": None}, dry=True).to_sql()
print(to_sql)

sql = ""
sql = """UPDATE "users" SET "name" = \'None\'"""

self.assertEqual(to_sql, sql)

Expand Down

0 comments on commit b44e74f

Please sign in to comment.