Skip to content

Commit

Permalink
Tests: Size of DatetimeIndex may be a long
Browse files Browse the repository at this point in the history
  • Loading branch information
jitseniesen committed Dec 17, 2016
1 parent 69d2203 commit 9cbd94d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_collectionsmodel_with_datetimeindex():
cm = CollectionsModel(None, coll)
assert data(cm, 0, 0) == 'rng'
assert data(cm, 0, 1) == 'DatetimeIndex'
assert data(cm, 0, 2) == '(25,)'
assert data(cm, 0, 2) == '(25,)' or data(cm, 0, 2) == '(25L,)'
assert data(cm, 0, 3) == rng.summary()

def test_shows_dataframeeditor_when_editing_datetimeindex(qtbot, monkeypatch):
Expand Down

0 comments on commit 9cbd94d

Please sign in to comment.