diff options
author | max99x <max99x@gmail.com> | 2011-08-02 10:22:01 +0300 |
---|---|---|
committer | max99x <max99x@gmail.com> | 2011-08-02 10:22:01 +0300 |
commit | bfbdbbf7d145b2c4cf83b9b0b440f6eece6a5f7b (patch) | |
tree | cfcd23c982259919281e953d0241f55bacaefd5a /tests/runner.py | |
parent | 31711483d5610fcc162a8ae4b990022f9001e641 (diff) |
Switched file timestamps from Date objects to numbers.
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index a3235e6a..dd0db277 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2396,8 +2396,8 @@ if 'benchmark' not in sys.argv: ).replace( '// {{POST_RUN_ADDITIONS}}', ''' - print('first changed: ' + (TEST_F1.timestamp.getTime() == 1200000000000)); - print('second changed: ' + (TEST_F2.timestamp.getTime() == 1200000000000)); + print('first changed: ' + (TEST_F1.timestamp == 1200000000000)); + print('second changed: ' + (TEST_F2.timestamp == 1200000000000)); ''' ) open(filename, 'w').write(src) |