Skip to content

Commit 0bacfb1

Browse files
committed
minor fix in test
1 parent 4aeb86d commit 0bacfb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/solutions/tests_solutions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ using DataFramesKoans
132132
df = DataFrame(CSV.File("chipotle.tsv"))
133133

134134
@test DataFramesKoans.read_data() == df
135-
@test DataFramesKoans.get_column_names(df) == [:order_id, :quantity, :item_name, :choice_description, :item_price]
135+
@test DataFramesKoans.get_column_names(df) == ["order_id", "quantity", "item_name", "choice_description", "item_price"]
136136
@test DataFramesKoans.get_first_item_name(df) == "Chips and Fresh Tomato Salsa"
137137

138138
DataFramesKoans.parse_item_price!(df)

0 commit comments

Comments
 (0)