Private
Public Access
1
0

removed print statement

This commit is contained in:
Sander Roosendaal
2021-01-11 13:16:24 +01:00
parent 6e236ae1e2
commit 82b5ece732

View File

@@ -43,10 +43,9 @@ class InteractivePlotTests(TestCase):
def test_interactive_boxchart(self):
df = pd.read_csv('rowers/tests/testdata/boxplotdata.csv')
print(df.info())
script, div = interactiveplots.interactive_boxchart(df, 'spm')
self.assertFalse(len(script)==0)
self.assertFalse(len(div)==0)