Skip to content

Commit

Permalink
Corrected test script assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesharrow committed Sep 3, 2024
1 parent 1dcb6eb commit 2306600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_testing/TC_EEVSE_2_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def accumulate_reports(wait_time):
self.step("17a")
count = sub_handler.attribute_report_counts[Clusters.EnergyEvse.Attributes.SessionID]
logging.info(f"Received {count} SessionID updates in {wait} seconds")
asserts.assert_equal(count, 0, "Expected = 1 SessionID updates after a plug-in")
asserts.assert_equal(count, 1, "Expected = 1 SessionID updates after a plug-in")

self.step("17b")
count = sub_handler.attribute_report_counts[Clusters.EnergyEvse.Attributes.SessionDuration]
Expand Down

0 comments on commit 2306600

Please sign in to comment.