Skip to content

Commit a452ac0

Browse files
Ares MerouehHailey Fong
Ares Meroueh
authored and
Hailey Fong
committed
Rename tests
Rename `test_python_schema_load` to `test_python_specification_schema_load`, and others. These were not appropriately renamed in the previous commit.
1 parent 3418359 commit a452ac0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/clients/test_environment.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,12 @@ def test_conda_schema_dump():
251251
assert data == CONDA_BODY
252252

253253

254-
def test_python_specification_schema_load():
254+
def test_python_environment_schema_load():
255255
data = PythonEnvironmentSchema().load(PYTHON_ENVIRONMENT_BODY)
256256
assert data == PYTHON_ENVIRONMENT
257257

258258

259-
def test_python_specification_schema_dump():
259+
def test_python_environment_schema_dump():
260260
data = PythonEnvironmentSchema().dump(PYTHON_ENVIRONMENT)
261261
assert data == PYTHON_ENVIRONMENT_BODY
262262

@@ -296,7 +296,7 @@ def test_apt_schema_dump():
296296
(PYTHON_SPECIFICATION_BODY_MISSING_KEYS, PYTHON_SPECIFICATION_NONE),
297297
],
298298
)
299-
def test_python_schema_load(body, expected):
299+
def test_python_specification_schema_load(body, expected):
300300
data = PythonSpecificationSchema().load(body)
301301
assert data == expected
302302

@@ -316,7 +316,7 @@ def test_python_schema_load(body, expected):
316316
(PYTHON_SPECIFICATION_NONE, PYTHON_SPECIFICATION_BODY_NONE),
317317
],
318318
)
319-
def test_python_schema_dump(object, expected):
319+
def test_python_specification_schema_dump(object, expected):
320320
data = PythonSpecificationSchema().dump(object)
321321
assert data == expected
322322

0 commit comments

Comments
 (0)