diff options
author | Austin Schaffer <austin.schaffer@ryansg.com> | 2019-12-19 13:08:17 -0500 |
---|---|---|
committer | Schaffer, Austin <austin.schaffer@ryansg.com> | 2019-12-19 14:42:10 -0500 |
commit | 9f22db72fdbc4f74725b3560698689ffab1013e0 (patch) | |
tree | baba73011c892e4d9292e2b235819ba4566b9f5f /test | |
parent | e2a9d17dc6e47c4df46f57904a886fbfcab71ed9 (diff) | |
download | liza-9f22db72fdbc4f74725b3560698689ffab1013e0.tar.gz liza-9f22db72fdbc4f74725b3560698689ffab1013e0.tar.bz2 liza-9f22db72fdbc4f74725b3560698689ffab1013e0.zip |
[DEV-5312] Use milliseconds for timestamp
Diffstat (limited to 'test')
-rw-r--r-- | test/system/V1MessageWriterTest.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/V1MessageWriterTest.ts b/test/system/V1MessageWriterTest.ts index a0931c0..2debf9d 100644 --- a/test/system/V1MessageWriterTest.ts +++ b/test/system/V1MessageWriterTest.ts @@ -404,7 +404,7 @@ describe( 'system.V1MessageWriter', () => const expected = { event: { id: 'STEP_SAVE', - ts: ts, + ts: ts * 1000, actor: 'SERVER', step: null, }, |