diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-11-22 18:03:58 +0100 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-11-22 18:03:58 +0100 |
commit | cb084fcb178e23fd7f51bf22f491e32f47a7e8e2 (patch) | |
tree | 06ba4325d530410f0d3b37311012770c5808b71f /spec/lib | |
parent | c18c61a49af70a18e7767f8d649ca2b1924689e2 (diff) | |
download | gitlab-ce-git-user-encoding.tar.gz |
rename matchergit-user-encoding
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/git/user_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/git/user_spec.rb b/spec/lib/gitlab/git/user_spec.rb index 1ceb99be11e..99d850e1df9 100644 --- a/spec/lib/gitlab/git/user_spec.rb +++ b/spec/lib/gitlab/git/user_spec.rb @@ -50,10 +50,10 @@ describe Gitlab::Git::User do expect(subject.gl_username).to eq(username) expect(subject.name).to eq(name.b) - expect(subject.name).to be_binary + expect(subject.name).to be_a_binary_string expect(subject.email).to eq(email.b) - expect(subject.email).to be_binary + expect(subject.email).to be_a_binary_string expect(subject.gl_id).to eq(gl_id) end |