Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Sep 28, 2023
1 parent 63a9311 commit 373416b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const useMockedVersions = (githubVersions: SDKVersion[], usedVersions: SDKVersio
'/api/projects/:team/query': () => [
200,
{
results: usedVersions.map((x) => [x.version, x.timestamp]),
result: usedVersions.map((x) => [x.version, x.timestamp]),
},
],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('sessionRecordingsListPropertiesLogic', () => {
useMocks({
post: {
'/api/projects/:team/query': {
results: [
result: [
['s1', JSON.stringify({ blah: 'blah1' })],
['s2', JSON.stringify({ blah: 'blah2' })],
],
Expand Down

0 comments on commit 373416b

Please sign in to comment.