8491902d5c7c0de65275b273a8da9f47b1e05fb1,tests/python/pants_test/backend/jvm/tasks/test_jvm_platform_analysis_integration.py,JvmPlatformAnalysisIntegrationTest,test_good_then_bad,#JvmPlatformAnalysisIntegrationTest#,93

Before Change


    with self.setup_sandbox() as sandbox:
      sandbox.write_build_file(self._good_one_two)
      self.assert_success(sandbox.clean_all())
      self.assert_success(sandbox.jvm_platform_validate("one", "two"))
      sandbox.write_build_file(self._bad_one_two)
      self.assert_failure(sandbox.jvm_platform_validate("one", "two"))

  def test_bad_then_good(self):

After Change


    with self.setup_sandbox() as sandbox:
      sandbox.write_build_file(self._good_one_two)
      self.assert_success(sandbox.clean_all())
      good_run = sandbox.jvm_platform_validate("one", "two")
      self.assert_success(good_run)
      sandbox.write_build_file(self._bad_one_two)
      bad_run = sandbox.jvm_platform_validate("one", "two")
      self.assert_failure(bad_run)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 3

Instances


Project Name: pantsbuild/pants
Commit Name: 8491902d5c7c0de65275b273a8da9f47b1e05fb1
Time: 2019-01-24
Author: ericarellano@me.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_jvm_platform_analysis_integration.py
Class Name: JvmPlatformAnalysisIntegrationTest
Method Name: test_good_then_bad


Project Name: pantsbuild/pants
Commit Name: 8491902d5c7c0de65275b273a8da9f47b1e05fb1
Time: 2019-01-24
Author: ericarellano@me.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_jvm_platform_analysis_integration.py
Class Name: JvmPlatformAnalysisIntegrationTest
Method Name: test_bad_then_good


Project Name: pantsbuild/pants
Commit Name: 8491902d5c7c0de65275b273a8da9f47b1e05fb1
Time: 2019-01-24
Author: ericarellano@me.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_jvm_platform_analysis_integration.py
Class Name: JvmPlatformAnalysisIntegrationTest
Method Name: test_bad_targets_fails_fresh


Project Name: pantsbuild/pants
Commit Name: 8491902d5c7c0de65275b273a8da9f47b1e05fb1
Time: 2019-01-24
Author: ericarellano@me.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_jvm_platform_analysis_integration.py
Class Name: JvmPlatformAnalysisIntegrationTest
Method Name: test_good_targets_works_fresh