()
| 2289 | |
| 2290 | |
| 2291 | def test_dict_keys_rangeindex(): |
| 2292 | result = Series({0: 1, 1: 2}) |
| 2293 | expected = Series([1, 2], index=RangeIndex(2)) |
| 2294 | tm.assert_series_equal(result, expected, check_index_type=True) |
nothing calls this directly
no test coverage detected