We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a24e5 commit 4ffec03Copy full SHA for 4ffec03
tests/analysis/test_graphs.py
@@ -373,7 +373,7 @@ def test_draw(self):
373
bc_square_sg_r.draw_graph_to_file(f"{self.tmp_path}/bc_square_r.pdf", algo="neato", image_labels=False)
374
375
# ensure PDF files were created
376
- pdfs = {path.split("/") for path in glob(f"{self.tmp_path}/*.pdf")}
+ pdfs = {path.split("/")[-1] for path in glob(f"{self.tmp_path}/*.pdf")}
377
expected_pdfs = {
378
"bc_square_r_single.pdf",
379
"bc_square_r.pdf",
0 commit comments