Skip to content

Commit f24ec87

Browse files
committed
renamed tests for clarity
1 parent f978add commit f24ec87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pytest-cov/test_pytest_cov.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def test_central(testdir):
113113
assert result.ret == 0
114114

115115

116-
def test_central_cov_min_100(testdir):
116+
def test_cov_min_100(testdir):
117117
script = testdir.makepyfile(SCRIPT)
118118

119119
result = testdir.runpytest('-v',
@@ -125,7 +125,7 @@ def test_central_cov_min_100(testdir):
125125
assert result.ret == 1
126126

127127

128-
def test_central_cov_min_50(testdir):
128+
def test_cov_min_50(testdir):
129129
script = testdir.makepyfile(SCRIPT)
130130

131131
result = testdir.runpytest('-v',
@@ -137,7 +137,7 @@ def test_central_cov_min_50(testdir):
137137
assert result.ret == 0
138138

139139

140-
def test_central_cov_min_no_report(testdir):
140+
def test_cov_min_no_report(testdir):
141141
script = testdir.makepyfile(SCRIPT)
142142

143143
result = testdir.runpytest('-v',

0 commit comments

Comments
 (0)