File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11import pytest
22
33import stagpy
4- import stagpy ._helpers
54from stagpy import _helpers
65from stagpy .config import Config
76from stagpy .stagyydata import StagyyData
@@ -19,12 +18,12 @@ def test_out_name_conf() -> None:
1918 oname = "something_fancy"
2019 stagpy .conf .core .outname = oname
2120 stem = "teapot"
22- assert stagpy . _helpers .out_name (stem ) == oname + "_" + stem
21+ assert _helpers .out_name (stem ) == oname + "_" + stem
2322 del stagpy .conf .core .outname
2423
2524
2625def test_out_name_number () -> None :
27- assert stagpy . _helpers .out_name ("T" , 123 ) == "stagpy_T00123"
26+ assert _helpers .out_name ("T" , 123 ) == "stagpy_T00123"
2827
2928
3029def test_baredoc () -> None :
@@ -35,4 +34,4 @@ def test_baredoc() -> None:
3534
3635 """
3736 expected = "Badly formatted docstring"
38- assert stagpy . _helpers .baredoc (test_baredoc ) == expected
37+ assert _helpers .baredoc (test_baredoc ) == expected
You can’t perform that action at this time.
0 commit comments