diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2019-04-25 08:52:57 +0000 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2019-04-25 08:52:57 +0000 |
commit | 6b90db7d64f404c7785b23dcf7b8e39ff6175423 (patch) | |
tree | 9b527961d55cce9eaefad4b373c0764bf31e1a3f | |
parent | 77efa66cdf17740e28e996cdfee3a3a8d7b19ef4 (diff) | |
parent | 79f17ee7798ee57b6ceae3109b6d097841265f37 (diff) | |
download | gitlab-ce-6b90db7d64f404c7785b23dcf7b8e39ff6175423.tar.gz |
Merge branch 'winh-typo-blob_spec' into 'master'
Fix typo in blob_spec.rb
See merge request gitlab-org/gitlab-ce!27661
-rw-r--r-- | spec/lib/gitlab/git/blob_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/git/blob_spec.rb b/spec/lib/gitlab/git/blob_spec.rb index 10bc82e24d1..1c24244c3a6 100644 --- a/spec/lib/gitlab/git/blob_spec.rb +++ b/spec/lib/gitlab/git/blob_spec.rb @@ -341,7 +341,7 @@ describe Gitlab::Git::Blob, :seed_helper do it { expect(blob.mode).to eq("100755") } end - context 'file with Chinese text' do + context 'file with Japanese text' do let(:blob) { Gitlab::Git::Blob.find(repository, SeedRepo::Commit::ID, "encoding/テスト.txt") } it { expect(blob.name).to eq("テスト.txt") } |