Skip to content

Commit

Permalink
Update std@0.140 -> 0.196 & fast-check@3 -> 3.12
Browse files Browse the repository at this point in the history
[changelog skip]
  • Loading branch information
dahlia committed Aug 3, 2023
1 parent cb8585c commit a891e77
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion testing.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.196.0/assert/mod.ts";

/**
* Makes an assertion that the elements of the `actual` iterable are equal to
Expand Down
4 changes: 2 additions & 2 deletions tests/collections_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import * as fc from "https://cdn.skypack.dev/fast-check@3.0.0?dts";
import { assertEquals } from "https://deno.land/std@0.196.0/assert/mod.ts";
import * as fc from "npm:fast-check@3.12.0";
import { fromIterable, toArray, toMap, toSet } from "../collections.ts";
import { assertStreams } from "../testing.ts";
import { getAsyncIterable } from "./testing_test.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/concat_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as fc from "https://cdn.skypack.dev/fast-check@3.0.0?dts";
import * as fc from "npm:fast-check@3.12.0";
import { fromIterable } from "../collections.ts";
import { concat } from "../concat.ts";
import { assertStreams } from "../testing.ts";
Expand Down
4 changes: 2 additions & 2 deletions tests/drop_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assert } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import * as fc from "https://cdn.skypack.dev/fast-check@3.0.0?dts";
import { assert } from "https://deno.land/std@0.196.0/assert/mod.ts";
import * as fc from "npm:fast-check@3.12.0";
import { fromIterable } from "../collections.ts";
import { drop, dropWhile } from "../drop.ts";
import { count } from "../infinite.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/fold_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.140.0/testing/asserts.ts";
} from "https://deno.land/std@0.196.0/assert/mod.ts";
import { reduce } from "../fold.ts";
import { getAsyncIterable } from "./testing_test.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/infinite_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertThrows } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import { assertThrows } from "https://deno.land/std@0.196.0/assert/mod.ts";
import { count, cycle, repeat } from "../infinite.ts";
import { assertStreams, assertStreamStartsWith } from "../testing.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/map_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertRejects } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import { assertRejects } from "https://deno.land/std@0.196.0/assert/mod.ts";
import { count, repeat } from "../infinite.ts";
import { map } from "../map.ts";
import { assertStreams, assertStreamStartsWith } from "../testing.ts";
Expand Down
4 changes: 2 additions & 2 deletions tests/take_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assert } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import * as fc from "https://cdn.skypack.dev/fast-check@3.0.0?dts";
import { assert } from "https://deno.land/std@0.196.0/assert/mod.ts";
import * as fc from "npm:fast-check@3.12.0";
import { fromIterable } from "../collections.ts";
import { count } from "../infinite.ts";
import { take, takeWhile } from "../take.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/tee_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as fc from "https://cdn.skypack.dev/fast-check@3.0.0?dts";
import * as fc from "npm:fast-check@3.12.0";
import { fromIterable } from "../collections.ts";
import { tee } from "../tee.ts";
import { assertStreams, assertStreamStartsWith } from "../testing.ts";
Expand Down
4 changes: 2 additions & 2 deletions tests/testing_test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
AssertionError,
assertRejects,
} from "https://deno.land/std@0.140.0/testing/asserts.ts";
import * as fc from "https://cdn.skypack.dev/fast-check@3.0.0?dts";
} from "https://deno.land/std@0.196.0/assert/mod.ts";
import * as fc from "npm:fast-check@3.12.0";
import { fromIterable } from "../collections.ts";
import { assertStreams, assertStreamStartsWith } from "../testing.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/unique_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.140.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.196.0/assert/mod.ts";
import { tee } from "../tee.ts";
import { assertStreams } from "../testing.ts";
import { groupBy, unique } from "../unique.ts";
Expand Down

0 comments on commit a891e77

Please sign in to comment.