c651359328f480aa5494c7cc39ea9db7f5d39a47,bigquery/samples/load_data_from_csv_test.py,TestLoadDataFromCSV,test_load_table,#TestLoadDataFromCSV#,23

Before Change



class TestLoadDataFromCSV(CloudBaseTest):
    def test_load_table(self):
        main(
            self.constants["projectId"],
            self.constants["datasetId"],
            self.constants["newTableId"],
            os.path.join(self.resource_path, "schema.json"),
            self.constants["cloudStorageInputURI"],
            1,
            5)

After Change


    table_id = "test_import_table"

    def test_load_table(self):
        cloud_storage_input_uri = "gs://{}/data.csv".format(self.bucket_name)
        schema_file = os.path.join(self.resource_path, "schema.json")

        main(
            self.project_id,
            self.dataset_id,
            self.table_id,
            schema_file=schema_file,
            data_path=cloud_storage_input_uri,
            poll_interval=1,
            num_retries=5)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: GoogleCloudPlatform/python-docs-samples
Commit Name: c651359328f480aa5494c7cc39ea9db7f5d39a47
Time: 2015-09-16
Author: jon.wayne.parrott@gmail.com
File Name: bigquery/samples/load_data_from_csv_test.py
Class Name: TestLoadDataFromCSV
Method Name: test_load_table


Project Name: IBM/adversarial-robustness-toolbox
Commit Name: 6ff4f63569f5b63e4379756fb2048cbe87cb772f
Time: 2020-09-09
Author: M.N.Tran@ibm.com
File Name: tests/estimators/speech_recognition/test_pytorch_deep_speech.py
Class Name:
Method Name:


Project Name: IBM/adversarial-robustness-toolbox
Commit Name: 4ddd4ae46b053e61ae42d2e778cfd214be908b99
Time: 2020-03-12
Author: beat.buesser@ie.ibm.com
File Name: tests/attacks/evasion/test_fast_gradient.py
Class Name:
Method Name: