@@ -251,12 +251,12 @@ def test_conda_schema_dump():
251
251
assert data == CONDA_BODY
252
252
253
253
254
- def test_python_specification_schema_load ():
254
+ def test_python_environment_schema_load ():
255
255
data = PythonEnvironmentSchema ().load (PYTHON_ENVIRONMENT_BODY )
256
256
assert data == PYTHON_ENVIRONMENT
257
257
258
258
259
- def test_python_specification_schema_dump ():
259
+ def test_python_environment_schema_dump ():
260
260
data = PythonEnvironmentSchema ().dump (PYTHON_ENVIRONMENT )
261
261
assert data == PYTHON_ENVIRONMENT_BODY
262
262
@@ -296,7 +296,7 @@ def test_apt_schema_dump():
296
296
(PYTHON_SPECIFICATION_BODY_MISSING_KEYS , PYTHON_SPECIFICATION_NONE ),
297
297
],
298
298
)
299
- def test_python_schema_load (body , expected ):
299
+ def test_python_specification_schema_load (body , expected ):
300
300
data = PythonSpecificationSchema ().load (body )
301
301
assert data == expected
302
302
@@ -316,7 +316,7 @@ def test_python_schema_load(body, expected):
316
316
(PYTHON_SPECIFICATION_NONE , PYTHON_SPECIFICATION_BODY_NONE ),
317
317
],
318
318
)
319
- def test_python_schema_dump (object , expected ):
319
+ def test_python_specification_schema_dump (object , expected ):
320
320
data = PythonSpecificationSchema ().dump (object )
321
321
assert data == expected
322
322
0 commit comments