fix: test: path for python 3.4, 3.5

This commit is contained in:
rachmadaniHaryono 2019-04-28 09:38:05 +08:00
parent 5597ebaf9b
commit 2b48ddd84b

View File

@ -1431,7 +1431,7 @@ def test_exportdb_single_rec(tmpdir):
db.add_rec('http://example.com')
exp_file = tmpdir.join('export')
db.exportdb(exp_file.strpath)
with open(exp_file) as f:
with open(exp_file.strpath) as f:
assert f.read()