Skip to content

Commit

Permalink
Fixed integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 25, 2024
1 parent cf8bd2b commit 9d94ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_tests/with_db/test_user_guide_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
@pytest.fixture
def example_db_schemas(pyexasol_connection):
with ExitStack() as stack:
s1 = stack.enter_context(temp_schema(example_connection))
s2 = stack.enter_context(temp_schema(example_connection))
s1 = stack.enter_context(temp_schema(pyexasol_connection))
s2 = stack.enter_context(temp_schema(pyexasol_connection))
yield (s1, s2)


Expand Down

0 comments on commit 9d94ad3

Please sign in to comment.