Skip to content

Commit 6c2b42d

Browse files
committed
chore: mv
1 parent c58865e commit 6c2b42d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/instances/tempo.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ test('default', async () => {
4444
})
4545

4646
test('behavior: instance errored (duplicate ports)', async () => {
47-
const instance_1 = defineInstance({ port: 8545 })
48-
const instance_2 = defineInstance({ port: 8545 })
47+
const instance_1 = defineInstance({ port: 8546 })
48+
const instance_2 = defineInstance({ port: 8546 })
4949

5050
await instance_1.start()
5151
await expect(() => instance_2.start()).rejects.toThrowError('Failed to start')
@@ -76,8 +76,8 @@ test('behavior: can subscribe to stdout', async () => {
7676
test('behavior: can subscribe to stderr', async () => {
7777
const messages: string[] = []
7878

79-
const instance_1 = defineInstance({ port: 8545 })
80-
const instance_2 = defineInstance({ port: 8545 })
79+
const instance_1 = defineInstance({ port: 8546 })
80+
const instance_2 = defineInstance({ port: 8546 })
8181

8282
await instance_1.start()
8383
instance_2.on('stderr', (message) => messages.push(message))

0 commit comments

Comments
 (0)