f8e0ecb710fdcb8bf0e657a962a4e11e4c7c7365,pandas/tests/arrays/test_datetimelike.py,TestDatetimeArray,test_array_object_dtype,#TestDatetimeArray#Any#,514
Before Change
def test_array_object_dtype(self, tz_naive_fixture):
// GH/
tz = tz_naive_fixture
dti = pd.date_range("2016-01-01", periods=3, tz=tz)
arr = DatetimeArray(dti)
expected = np.array(list(dti))
result = np.array(arr, dtype=object)
After Change
def test_array_object_dtype(self, arr1d):
// GH/
arr = arr1d
dti = self.index_cls(arr1d)
expected = np.array(list(dti))
result = np.array(arr, dtype=object)
In pattern: SUPERPATTERN
Frequency: 5
Non-data size: 6
Instances
Project Name: pandas-dev/pandas
Commit Name: f8e0ecb710fdcb8bf0e657a962a4e11e4c7c7365
Time: 2020-10-05
Author: jbrockmendel@gmail.com
File Name: pandas/tests/arrays/test_datetimelike.py
Class Name: TestDatetimeArray
Method Name: test_array_object_dtype
Project Name: pandas-dev/pandas
Commit Name: f8e0ecb710fdcb8bf0e657a962a4e11e4c7c7365
Time: 2020-10-05
Author: jbrockmendel@gmail.com
File Name: pandas/tests/arrays/test_datetimelike.py
Class Name: TestDatetimeArray
Method Name: test_array_tz
Project Name: pandas-dev/pandas
Commit Name: f8e0ecb710fdcb8bf0e657a962a4e11e4c7c7365
Time: 2020-10-05
Author: jbrockmendel@gmail.com
File Name: pandas/tests/arrays/test_datetimelike.py
Class Name: TestDatetimeArray
Method Name: test_array_i8_dtype
Project Name: pandas-dev/pandas
Commit Name: f8e0ecb710fdcb8bf0e657a962a4e11e4c7c7365
Time: 2020-10-05
Author: jbrockmendel@gmail.com
File Name: pandas/tests/arrays/test_datetimelike.py
Class Name: TestDatetimeArray
Method Name: test_from_dti
Project Name: pandas-dev/pandas
Commit Name: f8e0ecb710fdcb8bf0e657a962a4e11e4c7c7365
Time: 2020-10-05
Author: jbrockmendel@gmail.com
File Name: pandas/tests/arrays/test_datetimelike.py
Class Name: TestDatetimeArray
Method Name: test_astype_object