Skip to content

Commit

Permalink
Incorrect variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmjohnson committed Aug 11, 2016
1 parent 84a5bdd commit f4aba9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_json_import(dsd):
test_index = [2, 3, 0, 1]
json_data.df = json_data.df.reindex(test_index)
json_sub = json_data.df.select_dtypes(include=['float64'])
num_comp = (np.all(np.isclose(mat_sub.as_matrix(),
num_comp = (np.all(np.isclose(json_sub.as_matrix(),
dsd_sub.as_matrix())))
assert num_comp
# test the non-number fields
Expand Down

0 comments on commit f4aba9e

Please sign in to comment.