diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2019-12-09 12:06:52 -0500 |
---|---|---|
committer | Austin Schaffer <austin.schaffer@ryansg.com> | 2019-12-12 10:27:09 -0500 |
commit | 4383d15c5a375b7e189888aa22f198557997db47 (patch) | |
tree | 92013d00288b72a705582f2bf0d98ef11e590128 /test/system/DeltaPublisherTest.ts | |
parent | 9d6cb23e161eb333b6a7cbc25fa6db03b1ac10dc (diff) | |
download | liza-4383d15c5a375b7e189888aa22f198557997db47.tar.gz liza-4383d15c5a375b7e189888aa22f198557997db47.tar.bz2 liza-4383d15c5a375b7e189888aa22f198557997db47.zip |
AvroFactory: Extract avro-js type definitions into src/types
The declarations that were intended for the library were moved, but
additional things that were outside of the library were kept in place.
Diffstat (limited to 'test/system/DeltaPublisherTest.ts')
-rw-r--r-- | test/system/DeltaPublisherTest.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/system/DeltaPublisherTest.ts b/test/system/DeltaPublisherTest.ts index fcb788c..b5dfed1 100644 --- a/test/system/DeltaPublisherTest.ts +++ b/test/system/DeltaPublisherTest.ts @@ -31,9 +31,10 @@ import { Channel } from 'amqplib'; import { createAvroEncoder, AvroEncoderCtr, - AvroSchema, } from '../../src/system/avro/AvroFactory'; +import { AvroSchema } from "avro-js"; + import { expect, use as chai_use } from 'chai'; chai_use( require( 'chai-as-promised' ) ); @@ -481,4 +482,4 @@ function createMockDelta(): Delta<any> timestamp: <UnixTimestamp>123123123, data: <DeltaResult<any>>{}, } -}
\ No newline at end of file +} |