Skip to content

Commit

Permalink
fix: fix logcat test assert
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoweii committed Jan 9, 2024
1 parent 7757e80 commit 110eebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationtest/devicefarm/logcat_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_logcat(self, path):
recorded_events = get_recorded_events(path)
# assert all record events are submitted.
assert sum(submitted_events) > 0
assert sum(recorded_events) > 0
assert len(recorded_events) > 0
assert sum(submitted_events) == len(recorded_events)
print("Verifying successful upload of all events.")

Expand Down

0 comments on commit 110eebe

Please sign in to comment.