Skip to content
Snippets Groups Projects
Commit 2adb7ecb authored by jay's avatar jay
Browse files

removed assertTrue

parent 378dcb7e
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ def test_read_gfp(gpf, expected):
assert_frame_equal(df, expected)
@pytest.mark.parametrize('gpf, out_gpf', [(insight_gpf(),out_insight_gpf())])
def test_write_gfp(gpf, out_gpf):
def test_write_gpf(gpf, out_gpf):
df = read_gpf(gpf)
val = save_gpf(df, out_gpf)
assertTrue(filecmp.cmp(gpf, out_gpf, shallow=True), "save_gpf does not create an equal file.")
assert filecmp.cmp(gpf, out_gpf, shallow=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment