My custom function is following:
func mockDictionaryForLocation() -> [String: AnyObject] {
let dictionary = [
"id" = "1234", //here I have an error from the title, why?
"working_type" = "open_for_selected",
"min_order_price" = 15,
"specialization_breakfasts" = 1,
"specialization_confectioneries" = 1,
"specialization_dinners" = 0
]
return dictionary
}
You need to use colons instead of equals: