Commit 4f5aae1d authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

fix test

parent 9c1abeb5
...@@ -249,7 +249,7 @@ describe Gitlab::API do ...@@ -249,7 +249,7 @@ describe Gitlab::API do
response.status.should == 200 response.status.should == 200
json_response.should be_an Array json_response.should be_an Array
json_response.count.should == 2 json_response.count.should == 2
json_response.last['email'].should == user.email json_response.map { |u| u['email'] }.should include user.email
end end
it "finds team members with query string" do it "finds team members with query string" do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment