We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3afa7c commit b20fc15Copy full SHA for b20fc15
pandas/io/tests/test_data.py
@@ -145,7 +145,6 @@ def test_get_quote_string(self):
145
146
@network
147
def test_get_quote_stringlist(self):
148
- raise nose.SkipTest('unreliable test')
149
df = web.get_quote_yahoo(['GOOG', 'AAPL', 'GOOG'])
150
assert_series_equal(df.ix[0], df.ix[2])
151
pandas/util/testing.py
@@ -1143,7 +1143,7 @@ def wrapper(*args, **kwargs):
1143
try:
1144
e_str = traceback.format_exc(e)
1145
except:
1146
- e_Str = str(e)
+ e_str = str(e)
1147
1148
if any([m.lower() in e_str.lower() for m in _skip_on_messages]):
1149
raise SkipTest("Skipping test because exception message is known"
0 commit comments