diff options
-rw-r--r-- | unit_trace/gedf_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unit_trace/gedf_test.py b/unit_trace/gedf_test.py index 8457901..41bab96 100644 --- a/unit_trace/gedf_test.py +++ b/unit_trace/gedf_test.py | |||
@@ -37,7 +37,7 @@ def gedf_test(stream): | |||
37 | # Only to the check when time has moved forward. | 37 | # Only to the check when time has moved forward. |
38 | # (It is common to have records with simultaneous timestamps.) | 38 | # (It is common to have records with simultaneous timestamps.) |
39 | if last_time is not None and last_time != record.when: | 39 | if last_time is not None and last_time != record.when: |
40 | errors = _gedf_check(eligible,on_cpu,record.when,m) | 40 | errors = _gedf_check(eligible,on_cpu,last_time,m) |
41 | for error in errors: | 41 | for error in errors: |
42 | yield error | 42 | yield error |
43 | 43 | ||