Skip to content

Commit

Permalink
Update tests for new expected behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Sep 25, 2023
1 parent 28b97a6 commit 3f3e323
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py-polars/tests/unit/test_string_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ def test_string_cache_context_manager_mixed_with_enable_disable() -> None:
with pl.StringCache():
sc(True)
pl.disable_string_cache()
sc(False)
sc(False)
sc(True)
sc(True)
sc(False)

with pl.StringCache():
sc(True)
pl.disable_string_cache()
sc(False)
sc(True)
sc(False)


Expand Down

0 comments on commit 3f3e323

Please sign in to comment.