Skip to content

Commit 057d54f

Browse files
committed
Remove bad run
1 parent a3790bc commit 057d54f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ jobs:
6060
working-directory: image_processing
6161

6262
- name: Run PyTest
63-
run: uv run run pytest --cov=image_processing
63+
run: uv run pytest --cov=image_processing
6464
working-directory: image_processing

image_processing/tests/image_processing/test_mark_up_cleaner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def test_remove_markdown_tags(cleaner):
6565
}
6666
cleaned_text = cleaner.remove_markdown_tags(text, tag_patterns)
6767
assert "Some figure" in cleaned_text
68-
assert "Some content" not in cleaned_text
68+
assert "Some content" in cleaned_text
6969
assert "<!-- FigureContent=Some content -->" not in cleaned_text
7070
assert "<figure FigureId='12345'>Some figure</figure>" not in cleaned_text
7171

0 commit comments

Comments
 (0)