Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Fix CSV feature test to work with number parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
robyoung committed May 14, 2014
1 parent b06709a commit 9d6a198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/admin/csv_upload.feature
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Feature: CSV Upload
And I click "Upload"
Then the "my_data_set" data_set should contain in any order:
"""
{"name": "Pawel", "age": "27", "nationality": "Polish"}
{"name": "Max", "age": "35", "nationality": "Italian"}
{"name": "Pawel", "age": 27, "nationality": "Polish"}
{"name": "Max", "age": 35, "nationality": "Italian"}
"""

Scenario: UTF8 characters
Expand Down

0 comments on commit 9d6a198

Please sign in to comment.