Skip to content

Commit

Permalink
string new line
Browse files Browse the repository at this point in the history
  • Loading branch information
jkanche committed May 5, 2024
1 parent 52fb03f commit 0cb3f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ def test_add_get_operations():
rec2 = bfc.get("test2")
assert rec2 is not None

frec1 = open(rec1.rpath, "r").read()
frec1 = open(rec1.rpath, "r").read().strip()
assert frec1 == "test1"

frec2 = open(rec2.rpath, "r").read()
frec2 = open(rec2.rpath, "r").read().strip()
assert frec2 == "test2"

bfc.purge()
Expand Down

0 comments on commit 0cb3f86

Please sign in to comment.