diff options
| author | James Lopez <james@jameslopez.es> | 2016-03-31 09:22:28 +0200 |
|---|---|---|
| committer | James Lopez <james@jameslopez.es> | 2016-03-31 09:22:28 +0200 |
| commit | c2d5cc91c00654e1a0a0d01271022059c803d674 (patch) | |
| tree | d98fa3595480c448b484249e4e57e0aad8a56749 | |
| parent | 2d544d5445d12e45aea1341ab96059ca377484c1 (diff) | |
| download | gitlab-ce-fix/fogbugz-import.tar.gz | |
updated specfix/fogbugz-import
| -rw-r--r-- | spec/lib/gitlab/fogbugz_import/client_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/fogbugz_import/client_spec.rb b/spec/lib/gitlab/fogbugz_import/client_spec.rb index 1658348e37f..2dc71be0254 100644 --- a/spec/lib/gitlab/fogbugz_import/client_spec.rb +++ b/spec/lib/gitlab/fogbugz_import/client_spec.rb @@ -2,7 +2,7 @@ require 'spec_helper' describe Gitlab::FogbugzImport::Client, lib: true do - let(:client) { Gitlab::FogbugzImport::Client.new(uri: '', token: '') } + let(:client) { described_class.new(uri: '', token: '') } let(:one_user) { { 'people' => { 'person' => { "ixPerson" => "2", "sFullName" => "James" } } } } let(:two_users) { { 'people' => { 'person' => [one_user, { "ixPerson" => "3" }] } } } |
