Skip to content

Commit f08fb89

Browse files
committed
Merge pull request #4489 from jreback/hdf_fix
TST: test for breaking test in pytables on travis
2 parents 1fbce08 + 8832a60 commit f08fb89

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/io/tests/test_pytables.py

+5
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)