Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DinisCruz committed Jan 7, 2024
1 parent 763c656 commit ddeaf4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/utils/trace/test_Trace_Call.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,17 +191,17 @@ def an_temp_file():
return temp_file.tmp_file

an_temp_file()

if in_github_action():
expected_stats = dict(event_call = 97 ,
event_exception = 4 ,
event_line = 481 ,
event_return = 96 ,
event_line = 480 ,
event_return = 95 ,
event_unknown = 0 )
else:
expected_stats = dict(event_call = 97 ,
event_exception = 4 ,
event_line = 480 ,
event_line = 511 ,
event_return = 95 ,
event_unknown = 0 )
assert self.trace_call.stats() == Trace_Call__Stats(**expected_stats)
Expand Down

0 comments on commit ddeaf4c

Please sign in to comment.