Skip to content

Commit fb6a5a6

Browse files
committed
Rename internal imports of package
1 parent fb0e60c commit fb6a5a6

18 files changed

+18
-18
lines changed

test/calendar.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { reporter } = Pretty;
1212
import { strict as assert } from 'assert';
1313
const { equal, throws } = assert;
1414

15-
import * as Temporal from 'temporal-polyfill';
15+
import * as Temporal from '@js-temporal/polyfill';
1616
const { Calendar } = Temporal;
1717

1818
describe('Calendar', () => {

test/datemath.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal } = assert;
1616

17-
import * as Temporal from 'temporal-polyfill';
17+
import * as Temporal from '@js-temporal/polyfill';
1818

1919
describe('Date.since(simple, simple)', () => {
2020
build('Before Leap Day', '2020-01-03', '2020-02-15');

test/duration.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { reporter } = Pretty;
77
import { strict as assert } from 'assert';
88
const { throws, equal, notEqual } = assert;
99

10-
import * as Temporal from 'temporal-polyfill';
10+
import * as Temporal from '@js-temporal/polyfill';
1111
const { Duration } = Temporal;
1212

1313
describe('Duration', () => {

test/exhaust.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as Temporal from 'temporal-polyfill';
1+
import * as Temporal from '@js-temporal/polyfill';
22

33
const all = process.argv[2] === 'all';
44
const start = new Temporal.PlainDate(1999, 1, 1);

test/exports.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal } = assert;
1616

17-
import * as Temporal from 'temporal-polyfill';
17+
import * as Temporal from '@js-temporal/polyfill';
1818

1919
describe('Exports', () => {
2020
const named = Object.keys(Temporal);

test/instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, notEqual, throws } = assert;
1616

17-
import * as Temporal from 'temporal-polyfill';
17+
import * as Temporal from '@js-temporal/polyfill';
1818
const { Instant } = Temporal;
1919

2020
describe('Instant', () => {

test/intl.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { deepEqual, equal, throws } = assert;
99

1010
import { DateTimeFormat } from '../lib/intl.mjs';
1111
Intl.DateTimeFormat = DateTimeFormat;
12-
import * as Temporal from 'temporal-polyfill';
12+
import * as Temporal from '@js-temporal/polyfill';
1313

1414
describe('Intl', () => {
1515
// TODO: move these to their respective test files.

test/now.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, throws } = assert;
1616

17-
import * as Temporal from 'temporal-polyfill';
17+
import * as Temporal from '@js-temporal/polyfill';
1818

1919
describe('Temporal.now', () => {
2020
describe('Structure', () => {

test/plaindate.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, notEqual, throws } = assert;
1616

17-
import * as Temporal from 'temporal-polyfill';
17+
import * as Temporal from '@js-temporal/polyfill';
1818
const { PlainDate } = Temporal;
1919

2020
describe('Date', () => {

test/plaindatetime.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const { reporter } = Pretty;
1414
import { strict as assert } from 'assert';
1515
const { equal, notEqual, throws } = assert;
1616

17-
import * as Temporal from 'temporal-polyfill';
17+
import * as Temporal from '@js-temporal/polyfill';
1818
const { PlainDateTime } = Temporal;
1919

2020
describe('DateTime', () => {

0 commit comments

Comments
 (0)