Skip to content

Commit

Permalink
fixes for failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shashigharti committed Jun 7, 2022
1 parent efc6aba commit cde50b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/report/test_reporttask.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ def test_report_task_error_not_found():

def test_report_task_summary():
report = validate("data/countries.csv")
assert report.valid == False and ["describe", "extract", "validate"] == list(
assert report.valid is False and ["describe", "extract", "validate"] == list(
report.tasks[0].to_summary().keys()
)


def test_report_task_summary_valid():
report = validate("data/capital-valid.csv")
assert report.valid == True and ["summary"] == list(
assert report.valid is True and ["summary"] == list(
report.tasks[0].to_summary()["validate"].keys()
)

Expand Down

0 comments on commit cde50b5

Please sign in to comment.