From 75d6ea20e9f9f95c4b97d822bf664f6dec37fb1b Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Wed, 9 May 2018 14:42:29 -0400 Subject: [PATCH] Fix pandas test --- test/test_pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_pandas.py b/test/test_pandas.py index 81c7b9317..2098c5bc8 100644 --- a/test/test_pandas.py +++ b/test/test_pandas.py @@ -1,6 +1,6 @@ def test_pandas(selenium): selenium.load_package("pandas") - assert len(selenium.run("import pandas\ndir(pandas)")) == 6 + assert len(selenium.run("import pandas\ndir(pandas)")) == 179 def test_extra_import(selenium):