Skip to content

Commit

Permalink
Last change needed to be Windows compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Prescod committed Apr 14, 2020
1 parent 27b977f commit ddbd9ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_with_cci.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_mapping_file(self):
)

engine = create_engine(url)
connection = engine.connect()
result = list(connection.execute("select * from Account"))
assert result[0]["id"] == 1
assert result[0]["BillingCountry"] == "Canada"
with engine.connect() as connection:
result = list(connection.execute("select * from Account"))
assert result[0]["id"] == 1
assert result[0]["BillingCountry"] == "Canada"

0 comments on commit ddbd9ce

Please sign in to comment.