Skip to content

Commit

Permalink
Fix status
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Feb 7, 2025
1 parent db2b974 commit 2cce3ed
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,10 @@ export class LegacyPluginExecutorService {
// For testing we mock out all non-GET requests
addLog('info', 'Fetch called but mocked due to test function')
return Promise.resolve({
status: 500,
status: 200,
json: () =>
Promise.resolve({
status: 'OK',
message: 'Test function',
}),
} as Response)
Expand Down

0 comments on commit 2cce3ed

Please sign in to comment.