Skip to content

Commit

Permalink
MAINTENANCE
Browse files Browse the repository at this point in the history
* Fix tests imports
  • Loading branch information
tonysamperi committed May 21, 2023
1 parent 334ec94 commit 043df3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions test/datetime/format.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { DateTime, FixedOffsetZone, Zone } from "../../src";
import { ZoneOffsetFormat, ZoneOffsetOptions } from "ts-luxon";
import { DateTime, FixedOffsetZone, Zone, ZoneOffsetFormat, ZoneOffsetOptions } from "../../src";

const dtMaker = () =>
DateTime.fromObject({
Expand Down
3 changes: 1 addition & 2 deletions test/datetime/relative.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { DateTime } from "../../src";
import { DateTime, ToRelativeCalendarUnit } from "../../src";

import { Helpers } from "../helpers";
import { ToRelativeCalendarUnit } from "ts-luxon";

const sharedBase = DateTime.fromObject({ year: 1983, month: 10, day: 14 }).setLocale("en-US");
const baseUtc = sharedBase.toUTC();
Expand Down
3 changes: 1 addition & 2 deletions test/info/listers.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Info, WeekUnitLengths } from "../../src";
import { Info, WeekUnitLengths, UnitLength } from "../../src";
import { Helpers } from "../helpers";
import { UnitLength } from "ts-luxon";

// ------
// .months()
Expand Down

0 comments on commit 043df3f

Please sign in to comment.