3a93428ee521eb792384d300324184fff522fcb4,tests/python/pants_test/backend/jvm/tasks/test_classpath_products.py,ClasspathProductsTest,test_parent_exclude_excludes_dependency_jar,#ClasspathProductsTest#,77
Before Change
classpath_product = ClasspathProducts()
example_jar_path = self._example_jar_path()
classpath_product.add_for_target(b, [("default", example_jar_path)])
classpath_product.add_excludes_for_targets([a, b])
classpath = classpath_product.get_for_target(a)
After Change
classpath_product = ClasspathProducts()
example_jar_path = self._example_jar_path()
self.add_jar_classpath_element_for_path(classpath_product, b, example_jar_path)
self.add_excludes_for_targets(classpath_product, b, a)
classpath = classpath_product.get_for_target(a)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: pantsbuild/pants
Commit Name: 3a93428ee521eb792384d300324184fff522fcb4
Time: 2015-09-01
Author: nhoward@twopensource.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_classpath_products.py
Class Name: ClasspathProductsTest
Method Name: test_parent_exclude_excludes_dependency_jar
Project Name: pantsbuild/pants
Commit Name: 3a93428ee521eb792384d300324184fff522fcb4
Time: 2015-09-01
Author: nhoward@twopensource.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_classpath_products.py
Class Name: ClasspathProductsTest
Method Name: test_transitive_dependencys_excluded_classpath_element
Project Name: pantsbuild/pants
Commit Name: 3a93428ee521eb792384d300324184fff522fcb4
Time: 2015-09-01
Author: nhoward@twopensource.com
File Name: tests/python/pants_test/backend/jvm/tasks/test_classpath_products.py
Class Name: ClasspathProductsTest
Method Name: test_excluded_classpath_element