Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 02fc1a8

Browse files
committed
Fixed expected tenants in odata.test.js
1 parent 94b74d7 commit 02fc1a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/odata.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ describe('cap/samples - Bookshop APIs', () => {
128128
it('serves user info', async () => {
129129
{
130130
const { data } = await GET (`/user/me`)
131-
expect(data).to.containSubset({ id: 'alice', locale:'en', tenant: null })
131+
expect(data).to.containSubset({ id: 'alice', locale:'en' })
132132
}
133133
{
134134
const { data } = await GET (`/user/me`, {auth: { username: 'joe' }})
135-
expect(data).to.containSubset({ id: 'joe', locale:'en', tenant: null })
135+
expect(data).to.containSubset({ id: 'joe', locale:'en' })
136136
}
137137
})
138138

0 commit comments

Comments
 (0)