8000 fix file names to account for '_' replacements · ARMmbed/snippet@7287dc2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7287dc2

Browse files
committed
fix file names to account for '_' replacements
1 parent d23606e commit 7287dc2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def test_config_from_cli(self):
6666
)
6767

6868
self.assertTrue(filecmp.cmp(
69-
os.path.join(tmp_test_dir, 'thisconfigisitselfanexample.md'),
69+
os.path.join(tmp_test_dir, 'this_config_is_itself_an_example.md'),
7070
os.path.join(sample_input_dir, 'config_fixture.md'),
7171
shallow=False,
7272
))

tests/test_direct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_run(self):
3131
snippet.main(config=config)
3232

3333
self.assertTrue(filecmp.cmp(
34-
os.path.join(tmp_test_dir, 'number1.md'),
34+
os.path.join(tmp_test_dir, 'number_1.md'),
3535
os.path.join(sample_input_dir, 'fixture.md'),
3636
shallow=False,
3737
))

0 commit comments

Comments
 (0)
0