06c733bcddc4523b7b9d18daf1487484817a5e06,tests/python/pants_test/option/test_quiet_option_integration.py,TestOptionsQuietIntegration,test_pants_no_quiet_output_file,#TestOptionsQuietIntegration#,32

Before Change



  def test_pants_no_quiet_output_file(self):
    with temporary_file() as f:
      pants_run = self.run_pants(["--no-quiet", "export", "--output-file={}".format(f.name)])
      self.assert_success(pants_run)

      json_string = f.read().decode("utf8")
      // Make sure the json is valid from the file read.

After Change



  def test_pants_no_quiet_output_file(self):
    with temporary_file() as f:
      pants_run = self.run_pants(["--no-quiet", "export", f"--output-file={f.name}"])
      self.assert_success(pants_run)

      json_string = f.read().decode()
      // Make sure the json is valid from the file read.
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: pantsbuild/pants
Commit Name: 06c733bcddc4523b7b9d18daf1487484817a5e06
Time: 2019-09-08
Author: ericarellano@me.com
File Name: tests/python/pants_test/option/test_quiet_option_integration.py
Class Name: TestOptionsQuietIntegration
Method Name: test_pants_no_quiet_output_file


Project Name: pantsbuild/pants
Commit Name: a15ee392b3f1132b2a7b38fd2977c09436f5bcc4
Time: 2019-10-13
Author: ericarellano@me.com
File Name: tests/python/pants_test/backend/python/tasks/test_pytest_run_integration.py
Class Name: PytestRunIntegrationTest
Method Name: test_pytest_explicit_coverage


Project Name: pantsbuild/pants
Commit Name: adffe37334b44a86598d67b87cb5ab2e6d2245da
Time: 2018-06-07
Author: john.sirois@gmail.com
File Name: tests/python/pants_test/backend/python/tasks/test_python_run_integration.py
Class Name: PythonRunIntegrationTest
Method Name: test_pex_resolver_blacklist_integration