summaryrefslogtreecommitdiff
path: root/spec/controllers/dashboard
diff options
context:
space:
mode:
authorNur Rony <pro.nmrony@gmail.com>2017-02-22 14:44:01 +0600
committerNur Rony <pro.nmrony@gmail.com>2017-02-22 14:44:01 +0600
commit6f5b3dc7a08340b022070907b9e3a3fd031504bb (patch)
tree640a0ff7a705e177974b82b52687da3afbcfd5a0 /spec/controllers/dashboard
parente6c0c334e9596a90c21a614de047e4a3652fb763 (diff)
downloadgitlab-ce-6f5b3dc7a08340b022070907b9e3a3fd031504bb.tar.gz
fix rspec issue after delimiter fix
Diffstat (limited to 'spec/controllers/dashboard')
-rw-r--r--spec/controllers/dashboard/todos_controller_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/dashboard/todos_controller_spec.rb b/spec/controllers/dashboard/todos_controller_spec.rb
index 0a3ac9f9512..7072bd5e87c 100644
--- a/spec/controllers/dashboard/todos_controller_spec.rb
+++ b/spec/controllers/dashboard/todos_controller_spec.rb
@@ -46,7 +46,7 @@ describe Dashboard::TodosController do
expect(todo.reload).to be_pending
expect(response).to have_http_status(200)
- expect(json_response).to eq({ "count" => 1, "done_count" => 0 })
+ expect(json_response).to eq({ "count" => "1", "done_count" => "0" })
end
end
end