Skip to content

Commit b609117

Browse files
committed
We're calling this static, not global
1 parent 6c14ffb commit b609117

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_context.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
from tests.coveragetest import CoverageTest
1212

1313

14-
class GlobalContextTest(CoverageTest):
15-
"""Tests of the global context."""
14+
class StaticContextTest(CoverageTest):
15+
"""Tests of the static context."""
1616

1717
def setUp(self):
18-
super(GlobalContextTest, self).setUp()
18+
super(StaticContextTest, self).setUp()
1919
self.skip_unless_data_storage_is("sql")
2020

2121
def test_no_context(self):
@@ -25,7 +25,7 @@ def test_no_context(self):
2525
data = cov.get_data()
2626
self.assertCountEqual(data.measured_contexts(), [""])
2727

28-
def test_global_context(self):
28+
def test_static_context(self):
2929
self.make_file("main.py", "a = 1")
3030
cov = coverage.Coverage(context="gooey")
3131
self.start_import_stop(cov, "main")

0 commit comments

Comments
 (0)