Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jun 27, 2018
1 parent 5127fdd commit 437bbf4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/dataframe_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def test_get_columns_with_int(self):
'is_date': False,
'type': 'INT',
'name': 'b',
'is_dim': True,
'is_dim': False,
'agg': 'sum',
},
],
)
Expand All @@ -101,12 +102,14 @@ def test_get_columns_type_inference(self):
'is_date': False,
'type': 'FLOAT',
'name': 'a',
'is_dim': True,
'is_dim': False,
'agg': 'sum',
}, {
'is_date': False,
'type': 'INT',
'name': 'b',
'is_dim': True,
'is_dim': False,
'agg': 'sum',
},
],
)

0 comments on commit 437bbf4

Please sign in to comment.