Skip to content

Commit c8eb67a

Browse files
committed
fix(algorithms): import graph predicates from graph-gen
Update graph-class-roundtrip.test.ts to import graph property predicates from @bibgraph/graph-gen instead of @bibgraph/algorithms after the migration of graph generation code.
1 parent 0d95190 commit c8eb67a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/algorithms/__tests__/graph-class-roundtrip.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
*/
99

1010
import { describe, test, expect } from "vitest";
11+
import type { AnalyzerGraph } from "@bibgraph/algorithms";
1112
import {
1213
// Predicates
1314
isTree,
@@ -27,9 +28,7 @@ import {
2728
isPermutation,
2829
isUnitDisk,
2930
isComparability,
30-
// Types
31-
type AnalyzerGraph,
32-
} from "@bibgraph/algorithms";
31+
} from "@bibgraph/graph-gen";
3332

3433
describe("Graph Class Round-trip Tests", () => {
3534
describe("Basic graph classes", () => {

0 commit comments

Comments
 (0)