Skip to content

Commit f894fa7

Browse files
committed
add GH number to test case
1 parent 121e876 commit f894fa7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/indexes/test_base.py

+1
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,7 @@ def test_insert(self):
560560
tm.assert_index_equal(Index(['a']), null_index.insert(0, 'a'))
561561

562562
def test_insert_missing(self, nulls_fixture):
563+
# GH 22295
563564
# test there is no mangling of NA values
564565
expected = Index(['a', nulls_fixture, 'b', 'c'])
565566
result = Index(list('abc')).insert(1, nulls_fixture)

0 commit comments

Comments
 (0)