9a541a67107b7cc6e4a1da221bbe346dfb71addf,tests/test_experiment.py,TestExperimentConfigs,test_experiment_config,#TestExperimentConfigs#,19

Before Change



class TestExperimentConfigs(TestCase):
    def test_experiment_config(self):
        config_dict = {"name": "test", "uuid": str(uuid.uuid4()), "project": str(uuid.uuid4())}
        config = ExperimentConfig.from_dict(config_dict)
        assert config.to_dict() == config_dict

After Change



class TestExperimentConfigs(TestCase):
    def test_experiment_config(self):
        config_dict = {"name": "test", "uuid": uuid.uuid4().hex, "project": uuid.uuid4().hex}
        config = ExperimentConfig.from_dict(config_dict)
        assert config.to_dict() == config_dict
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 4

Instances


Project Name: polyaxon/polyaxon
Commit Name: 9a541a67107b7cc6e4a1da221bbe346dfb71addf
Time: 2017-12-04
Author: mouradmourafiq@gmail.com
File Name: tests/test_experiment.py
Class Name: TestExperimentConfigs
Method Name: test_experiment_config


Project Name: GoogleCloudPlatform/python-docs-samples
Commit Name: 66825c245c81594f24c333c0439836733ba27004
Time: 2020-06-08
Author: tmatsuo@google.com
File Name: iot/api-client/gcs_file_to_device/gcs_send_to_device_test.py
Class Name:
Method Name:


Project Name: polyaxon/polyaxon
Commit Name: 9a541a67107b7cc6e4a1da221bbe346dfb71addf
Time: 2017-12-04
Author: mouradmourafiq@gmail.com
File Name: tests/test_experiment.py
Class Name: TestExperimentConfigs
Method Name: create_pod_labels


Project Name: polyaxon/polyaxon
Commit Name: 9a541a67107b7cc6e4a1da221bbe346dfb71addf
Time: 2017-12-04
Author: mouradmourafiq@gmail.com
File Name: tests/test_data.py
Class Name: TestDataConfigs
Method Name: test_data_config


Project Name: polyaxon/polyaxon
Commit Name: 9a541a67107b7cc6e4a1da221bbe346dfb71addf
Time: 2017-12-04
Author: mouradmourafiq@gmail.com
File Name: tests/test_data.py
Class Name: TestDataConfigs
Method Name: test_dataset_config