Skip to content

Commit d0e17cf

Browse files
committed
fix typo in comment
1 parent 5b27183 commit d0e17cf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/test_ch03.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
example_scripts = list(chapter_dir.rglob("*.py"))
99

1010

11-
# Runs all example scripts in chapter 3, skips files in main() is not defined.
11+
# Runs all example scripts in chapter 3, skips files if main() is not defined.
1212
# Passes if script runs without error.
1313
@pytest.mark.parametrize("script_path", example_scripts, ids=lambda p: p.name)
1414
def test_ch03_examples(script_path):

tests/test_ch05.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
example_scripts = list(chapter_dir.rglob("*.py"))
99

1010

11-
# Runs all example scripts in chapter 5, skips files in main() is not defined.
11+
# Runs all example scripts in chapter 5, skips files if main() is not defined.
1212
# Passes if script runs without error.
1313
@pytest.mark.parametrize("script_path", example_scripts, ids=lambda p: p.name)
1414
def test_ch03_examples(script_path):

tests/test_ch06.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
example_scripts = list(chapter_dir.rglob("*.py"))
99

1010

11-
# Runs all example scripts in chapter 6, skips files in main() is not defined.
11+
# Runs all example scripts in chapter 6, skips files if main() is not defined.
1212
# Passes if script runs without error.
1313
@pytest.mark.parametrize("script_path", example_scripts, ids=lambda p: p.name)
1414
def test_ch03_examples(script_path):

tests/test_ch07.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
example_scripts = list(chapter_dir.rglob("*.py"))
99

1010

11-
# Runs all example scripts in chapter 7, skips files in main() is not defined.
11+
# Runs all example scripts in chapter 7, skips files if main() is not defined.
1212
# Passes if script runs without error.
1313
@pytest.mark.parametrize("script_path", example_scripts, ids=lambda p: p.name)
1414
def test_ch03_examples(script_path):

tests/test_ch08.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
example_scripts = list(chapter_dir.rglob("*.py"))
99

1010

11-
# Runs all example scripts in chapter 8, skips files in main() is not defined.
11+
# Runs all example scripts in chapter 8, skips files if main() is not defined.
1212
# Passes if script runs without error.
1313
@pytest.mark.parametrize("script_path", example_scripts, ids=lambda p: p.name)
1414
def test_ch03_examples(script_path):

tests/test_ch11.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
example_scripts = list(chapter_dir.rglob("*.py"))
99

1010

11-
# Runs all example scripts in chapter 11, skips files in main() is not defined.
11+
# Runs all example scripts in chapter 11, skips files if main() is not defined.
1212
# Passes if script runs without error.
1313
@pytest.mark.parametrize("script_path", example_scripts, ids=lambda p: p.name)
1414
def test_ch03_examples(script_path):

0 commit comments

Comments
 (0)