aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/time/time.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/layout/time/time.test.tsx')
-rw-r--r--src/components/atoms/layout/time/time.test.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/atoms/layout/time/time.test.tsx b/src/components/atoms/layout/time/time.test.tsx
index 910285d..f3da8b5 100644
--- a/src/components/atoms/layout/time/time.test.tsx
+++ b/src/components/atoms/layout/time/time.test.tsx
@@ -1,6 +1,6 @@
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '../../../../../tests/utils';
-import { settings } from '../../../../utils/config';
+import { CONFIG } from '../../../../utils/config';
import { Time } from './time';
describe('Time', () => {
@@ -31,7 +31,7 @@ describe('Time', () => {
expect(
rtlScreen.getByText(new RegExp(`${date.getFullYear()}`))
).toHaveTextContent(
- new Intl.DateTimeFormat(settings.locales.defaultLocale, {
+ new Intl.DateTimeFormat(CONFIG.locales.defaultLocale, {
weekday: 'long',
}).format(date)
);