Skip to content

Commit 32c3ff3

Browse files
committed
structural nit
1 parent 409b798 commit 32c3ff3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/clients/abstracts/MainstreamDBClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { LinkedQLClient } from './LinkedQLClient.js';
22
import { RealtimeClient } from '../../proc/realtime/RealtimeClient.js';
33
import { SchemaInference } from './SchemaInference.js';
4-
import { WalEngine } from '../../proc/sync/WalEngine.js';
4+
import { WalEngine } from '../../proc/timeline/WalEngine.js';
55
import { SQLParser } from '../../lang/SQLParser.js';
66
import { registry } from '../../lang/registry.js';
77
import { normalizeQueryArgs } from './util.js';

test/14realtime.stress.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { expect } from 'chai';
22

33
import '../src/lang/index.js';
4-
import { WalEngine } from '../src/proc/sync/WalEngine.js';
4+
import { WalEngine } from '../src/proc/timeline/WalEngine.js';
55
import { RealtimeResult } from '../src/proc/realtime/RealtimeResult.js';
66
import { FlashQL } from '../src/flashql/FlashQL.js';
77

test/15edge.client.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const opFromUrl = (url) => new URL(url, 'http://localhost').searchParams.get('op
2121

2222
describe('EdgeClient - Exhaustive (HTTP)', () => {
2323
it('rejects missing url', () => {
24-
expect(() => new EdgeClient({})).to.throw('No url specified');
24+
expect(() => new EdgeClient({})).to.throw('No url or worker specified');
2525
});
2626

2727
it('rejects invalid type', () => {

0 commit comments

Comments
 (0)