aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/0x.js/test/expiration_watcher_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/test/expiration_watcher_test.ts b/packages/0x.js/test/expiration_watcher_test.ts
index 1b4ba0bf5..31e01dba6 100644
--- a/packages/0x.js/test/expiration_watcher_test.ts
+++ b/packages/0x.js/test/expiration_watcher_test.ts
@@ -94,7 +94,7 @@ describe('ExpirationWatcher', () => {
const orderHash = ZeroEx.getOrderHashHex(signedOrder);
expirationWatcher.addOrder(orderHash, signedOrder.expirationUnixTimestampSec);
const callback = reportCallbackErrors(done)((hash: string) => {
- done(new Error('Emited expiration vent before the order actually expired'));
+ done(new Error('Emitted expiration went before the order actually expired'));
});
expirationWatcher.subscribe(callback);
const notEnoughTime = orderLifetimeS - 1;