Skip to content

Commit

Permalink
Fix typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
uvchik committed May 29, 2020
1 parent 25d85f8 commit 4c48478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_data_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_data_check_logging_warnings(self, caplog):
self.df.loc["GE158/4800", "has_power_curve"] = True
self.df.loc["GE100/2750", "has_cp_curve"] = True
check_data_integrity(self.df, min_pc_length=26)
assert "E48/800: power_curve is to short (25 values)" in caplog.text
assert "E48/800: power_curve is too short (25 values)" in caplog.text
assert "GE158/4800: No power curve" in caplog.text
assert "GE100/2750: No cp-curve but has_cp_curve" in caplog.text

Expand Down

0 comments on commit 4c48478

Please sign in to comment.