Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Kota Takahashi <91713065+KotaTakahashi9320@users.noreply.github.com>
  • Loading branch information
mdonaka and KotaTakahashi9320 authored Jun 29, 2023
1 parent 3646d8e commit 0e98638
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def test_restore(method: str, args: dict, expected: pd.DataFrame,
shutil.rmtree(path)
os.mkdir(path)

sdf_resulr = getattr(sdf, method)(*args)
sdf_resulr.to_csv(path)
result = qmpc_new.restore(sdf_resulr.get_id(), path, 3)
sdf_result = getattr(sdf, method)(*args)
sdf_result.to_csv(path)
result = qmpc_new.restore(sdf_result.get_id(), path, 3)
pd.testing.assert_frame_equal(result, expected)

shutil.rmtree(path)

0 comments on commit 0e98638

Please sign in to comment.