Skip to content

Commit 1b1f482

Browse files
committed
fix test
1 parent 42d89c9 commit 1b1f482

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_cluster_graph.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -570,16 +570,16 @@ def test_cluster_restrict_coassembly_samples_single_assembly(self):
570570
], schema=READ_SIZE_COLUMNS)
571571

572572
expected = pl.DataFrame([
573-
["2", 1, 6, 1000, "1,2", "coassembly_0"],
574-
["1", 1, 5, 1000, "1,2", "coassembly_1"],
575-
["3", 1, 3, 1000, "2,3", "coassembly_2"],
573+
["2", 1, 6, 1000, "1,2,3", "coassembly_0"],
574+
["1", 1, 5, 1000, "1,2,3", "coassembly_1"],
576575
], schema=ELUSIVE_CLUSTERS_COLUMNS)
577576
observed = pipeline(
578577
elusive_edges,
579578
read_size,
580579
MAX_COASSEMBLY_SAMPLES=1,
581580
MIN_COASSEMBLY_SAMPLES=1,
582581
MAX_RECOVERY_SAMPLES=4,
582+
COASSEMBLY_SAMPLES=["1", "2"],
583583
)
584584
self.assertDataFrameEqual(expected, observed)
585585

0 commit comments

Comments
 (0)