Skip to content

Commit

Permalink
fix flake violations
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantimjohn authored Dec 13, 2022
1 parent 797dca1 commit 444ba80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/db/test_sqlalchemy_driver_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def test_create_sqlalchemy_url(self,
db_facts['query'] = {'keepalives': '1', 'keepalives_idle': '30'}
actual_url = connect.create_sqlalchemy_url(db_facts)
actual_url_str = str(actual_url)
self.assertEqual(actual_url_str,expected_url,"{}!={}".format(actual_url_str,
expected_url))
self.assertEqual(actual_url_str, expected_url, "{}!={}".format(actual_url_str,
expected_url))

@patch('records_mover.db.connect.db_facts_from_lpass')
@patch('records_mover.db.connect.sa.create_engine')
Expand Down

0 comments on commit 444ba80

Please sign in to comment.