diff options
author | Austin Schaffer <austin.schaffer@ryansg.com> | 2019-12-10 17:24:19 -0500 |
---|---|---|
committer | Austin Schaffer <austin.schaffer@ryansg.com> | 2019-12-12 10:27:09 -0500 |
commit | e3dded760d18013e4f91248b0d12ec6c6a9dc368 (patch) | |
tree | 71b93936bbd19fe6d70800bbce4299fdb27d3b94 /test/system/EventMediatorTest.ts | |
parent | 9eb1f3afca4228fa9b69dde10336379094fe0bf9 (diff) | |
download | liza-e3dded760d18013e4f91248b0d12ec6c6a9dc368.tar.gz liza-e3dded760d18013e4f91248b0d12ec6c6a9dc368.tar.bz2 liza-e3dded760d18013e4f91248b0d12ec6c6a9dc368.zip |
[DEV-5312] Define document meta data and restructure message writer.
Add better tests for message writer
Diffstat (limited to 'test/system/EventMediatorTest.ts')
-rw-r--r-- | test/system/EventMediatorTest.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/EventMediatorTest.ts b/test/system/EventMediatorTest.ts index caab191..abfbef8 100644 --- a/test/system/EventMediatorTest.ts +++ b/test/system/EventMediatorTest.ts @@ -62,11 +62,11 @@ describe( 'system.EventLogger captures and logs events', () => expect( method_called ).to.be.true; } ); - it( 'amqp-conn-error triggers log#warning', () => + it( 'amqp-conn-warn triggers log#warning', () => { let method_called = false; - const event_id = 'amqp-conn-error'; + const event_id = 'amqp-conn-warn'; const emitter = new EventEmitter(); const log = createMockLogger(); |