Skip to content

Commit

Permalink
Update unittest for the summary module
Browse files Browse the repository at this point in the history
  • Loading branch information
rossarmstrong committed Nov 30, 2023
1 parent 5c6ec67 commit a115d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def test_summary_example_1(self):
try:
pd.testing.assert_frame_equal(expected_result, actual_result)
print("DataFrames are equal.")
except AssertionError as e: # pragma: no cover
print("DataFrames are not equal. Differences:\n", e)
except AssertionError as error: # pragma: no cover
print("DataFrames are not equal. Differences:\n", error)

def test_summary_example_2(self):
"""
Expand Down

0 comments on commit a115d08

Please sign in to comment.