Skip to content

Commit

Permalink
update tests in concert with updated missing-token response expectati…
Browse files Browse the repository at this point in the history
…ons for Q
  • Loading branch information
zburke committed Jan 16, 2024
1 parent 52bfdab commit c8f9d8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Root/FFetch.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('FFetch class', () => {
.mockResolvedValueOnce(new Response(
'Token missing',
{
status: 403,
status: 400,
headers: {
'content-type': 'text/plain',
},
Expand Down Expand Up @@ -149,7 +149,7 @@ describe('FFetch class', () => {
.mockResolvedValueOnce(new Response(
'Token missing',
{
status: 403,
status: 400,
headers: {
'content-type': 'text/plain',
},
Expand All @@ -173,7 +173,7 @@ describe('FFetch class', () => {
.mockResolvedValueOnce(new Response(
'Token missing',
{
status: 403,
status: 400,
headers: {
'content-type': 'text/plain',
},
Expand Down

0 comments on commit c8f9d8c

Please sign in to comment.