Skip to content

Commit 329b1f0

Browse files
committed
Fix lints
1 parent 34fb600 commit 329b1f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spec/assessments_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'spec_helper'
44

55
describe Minfraud::Assessments do
6-
let(:resolver) { double(::Minfraud::Resolver) }
6+
let(:resolver) { double(Minfraud::Resolver) }
77
subject { described_class.new({}, resolver) }
88

99
before { allow(resolver).to receive(:assign) }

spec/resolver_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
end
2121

2222
it 'maps hash keys to corresponding components' do
23-
allow(context).to receive(:account) { ::Minfraud::Components::Account.new }
23+
allow(context).to receive(:account) { Minfraud::Components::Account.new }
2424
allow(context).to receive(:account=)
2525

2626
described_class.assign(context, { account: {} })
2727

2828
expect(context).to respond_to(:account)
29-
expect(context.account).to be_an_instance_of ::Minfraud::Components::Account
29+
expect(context.account).to be_an_instance_of Minfraud::Components::Account
3030
end
3131
end
3232
end

0 commit comments

Comments
 (0)