Skip to content

Commit

Permalink
Remove unnecessary commas
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Mar 29, 2024
1 parent 784a9d3 commit 4011a81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_db_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,19 +233,19 @@ def test_getUrl(self):
self.assertEqual(
auth.getUrl("postgresql://[email protected]:5432/my_database"),
"postgresql://user:[email protected]:5432/my_database",
),
)
self.assertEqual(
auth.getUrl("postgresql://[email protected]/my_database"),
"postgresql://user:[email protected]/my_database",
),
)
self.assertEqual(
auth.getUrl("postgresql://host.example.com/my_database"),
"postgresql://foo:[email protected]/my_database",
),
)
self.assertEqual(
auth.getUrl("postgresql://host.example.com:5432/my_database"),
"postgresql://foo:[email protected]:5432/my_database",
),
)

filePath = os.path.join(TESTDIR, "db-auth.yaml")
os.chmod(filePath, 0o600)
Expand Down

0 comments on commit 4011a81

Please sign in to comment.