Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit f8ce706

Browse files
committed
Merge pull request #13 from henchc/master
typos and syntax errors, merge shape?
2 parents 8048351 + 52ecd5c commit f8ce706

File tree

3 files changed

+111
-121
lines changed

3 files changed

+111
-121
lines changed

challenges/03_analysis/test_B.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ def test_stemmer():
2121
assert unstemmed_word not in d
2222

2323
def test_stop_words():
24-
assert B.stop_list = []
24+
assert type(B.stop_list) is list

challenges/03_analysis/test_C.py

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/env python
22

33
import os
4-
import pandas as pdb
4+
import pandas as pd
55
import pytest
66

77
import C_tables as C
@@ -11,7 +11,7 @@ def test_import():
1111
assert C.person_data.shape == (100,3)
1212

1313
def test_merge():
14-
assert C.person_data.shape == (100,3)
14+
assert C.all_data.shape == (103,6)
1515

1616
def test_new():
1717
assert os.path.isfile('../../data/height_above_sea.csv')

0 commit comments

Comments
 (0)