Skip to content

Commit

Permalink
reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
nulldef committed Jun 22, 2021
1 parent b8031cc commit f15dff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/building_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def call
it "builds a right service" do
expect(BaseService.build(:a, option: true)).to be_a(ServiceA)
expect(BaseService.build(:b, option: true)).to be_a(ServiceB)
expect(BaseService.build(:other, option: false)).to be_a(BaseService)
expect(BaseService.build(:other, option: true)).to be_a(ServiceC)
expect(BaseService.build(:other, option: false)).to be_a(BaseService)
end
end

0 comments on commit f15dff9

Please sign in to comment.