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

Commit 52ecd5c

Browse files
committed
fixed import typo, changed merge shape
1 parent 2f3a4c2 commit 52ecd5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)