File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
from tests .coveragetest import CoverageTest
12
12
13
13
14
- class GlobalContextTest (CoverageTest ):
15
- """Tests of the global context."""
14
+ class StaticContextTest (CoverageTest ):
15
+ """Tests of the static context."""
16
16
17
17
def setUp (self ):
18
- super (GlobalContextTest , self ).setUp ()
18
+ super (StaticContextTest , self ).setUp ()
19
19
self .skip_unless_data_storage_is ("sql" )
20
20
21
21
def test_no_context (self ):
@@ -25,7 +25,7 @@ def test_no_context(self):
25
25
data = cov .get_data ()
26
26
self .assertCountEqual (data .measured_contexts (), ["" ])
27
27
28
- def test_global_context (self ):
28
+ def test_static_context (self ):
29
29
self .make_file ("main.py" , "a = 1" )
30
30
cov = coverage .Coverage (context = "gooey" )
31
31
self .start_import_stop (cov , "main" )
You can’t perform that action at this time.
0 commit comments