676c0e80b90e2e6293f7204db8cb57a412c53d8f,tests/python/pants_test/option/test_custom_types.py,CustomTypesTest,test_list,#CustomTypesTest#,45

Before Change


    self._do_test_list_error("{"a": "b"}")
    self._do_test_list_error("1")
    self._do_test_list_error(""a"")
    self._do_test_list_error("null")

After Change


    self._do_test([], "[]")
    self._do_test([1, 2, 3], "[1, 2, 3]")
    self._do_test((1, 2, 3), "1,2,3")
    self._do_test([1, 2, 3, 4], "[1, 2] + [3, 4]")
    self._do_test((1, 2, 3, 4), "(1, 2) + (3, 4)")
    self._do_test(["a", "b", "c"], "["a", "b", "c"]")
    self._do_test(["a", "b", "c"], "["a", "b", "c"]")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: pantsbuild/pants
Commit Name: 676c0e80b90e2e6293f7204db8cb57a412c53d8f
Time: 2014-12-08
Author: benjyw@gmail.com
File Name: tests/python/pants_test/option/test_custom_types.py
Class Name: CustomTypesTest
Method Name: test_list


Project Name: pantsbuild/pants
Commit Name: 7f1403ef9c8289719620cc44b33a85deb232f75e
Time: 2016-03-10
Author: benjyw@gmail.com
File Name: tests/python/pants_test/option/test_custom_types.py
Class Name: CustomTypesTest
Method Name: test_list


Project Name: pantsbuild/pants
Commit Name: 1bb2671959f621369738ef0a20e3f14d95bab2a5
Time: 2015-09-22
Author: benjyw@gmail.com
File Name: tests/python/pants_test/option/test_custom_types.py
Class Name: CustomTypesTest
Method Name: test_list