Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8832a60

Browse files
committedAug 6, 2013
TST: test for breaking test in pytables on travis
1 parent 93158c5 commit 8832a60

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎pandas/io/tests/test_pytables.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2421,8 +2421,13 @@ def test_string_select(self):
24212421
expected = df[df.x == 'none']
24222422
assert_frame_equal(result,expected)
24232423

2424+
print("bogus test")
2425+
print(df)
2426+
print(store)
24242427
result = store.select('df',Term('x!=none'))
2428+
print(result)
24252429
expected = df[df.x != 'none']
2430+
print(expected)
24262431
assert_frame_equal(result,expected)
24272432

24282433
df2 = df.copy()

0 commit comments

Comments
 (0)
Please sign in to comment.