Grammar fix

This commit is contained in:
Justin 2022-08-10 10:34:12 -04:00
parent cbe9f47a59
commit b377689ed2
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ import { renderHook, waitFor } from 'soapbox/jest/test-helpers';
import useOnboardingSuggestions from '../suggestions';
describe('useCarouselAvatars', () => {
describe('with a successul query', () => {
describe('with a successful query', () => {
beforeEach(() => {
__stub((mock) => {
mock.onGet('/api/v2/suggestions')
@ -26,7 +26,7 @@ describe('useCarouselAvatars', () => {
});
});
describe('with an unsuccessul query', () => {
describe('with an unsuccessful query', () => {
beforeEach(() => {
__stub((mock) => {
mock.onGet('/api/v2/suggestions').networkError();

View file

@ -4,7 +4,7 @@ import { renderHook, waitFor } from 'soapbox/jest/test-helpers';
import useTrends from '../trends';
describe('useTrends', () => {
describe('with a successul query', () => {
describe('with a successful query', () => {
beforeEach(() => {
__stub((mock) => {
mock.onGet('/api/v1/trends')
@ -24,7 +24,7 @@ describe('useTrends', () => {
});
});
describe('with an unsuccessul query', () => {
describe('with an unsuccessful query', () => {
beforeEach(() => {
__stub((mock) => {
mock.onGet('/api/v1/trends').networkError();