Skip to content

Commit

Permalink
Merge pull request #390 from 4Catalyzer/fix-error-msg
Browse files Browse the repository at this point in the history
fix: error message text
  • Loading branch information
emmilco committed Oct 5, 2022
2 parents 14b455e + 3427892 commit a4c8855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_resty/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def assert_shape(actual, expected, key=None):
+ (
f"the actual value has {actual_len - expected_len} more items"
if actual_len > expected_len
else f"the actual value has {expected_len - actual_len} less items"
else f"the actual value has {expected_len - actual_len} fewer items"
)
+ suffix
)
Expand Down

0 comments on commit a4c8855

Please sign in to comment.