From be60adbcb3d1e4f7429ad0b957fa6378ca0dd179 Mon Sep 17 00:00:00 2001 From: Andy Brett Date: Thu, 18 Mar 2021 14:39:59 -0700 Subject: [PATCH] update class name to singular in spec --- spec/services/unit_prices_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/services/unit_prices_spec.rb b/spec/services/unit_prices_spec.rb index 66a54ffed7..0e836f2c29 100644 --- a/spec/services/unit_prices_spec.rb +++ b/spec/services/unit_prices_spec.rb @@ -2,8 +2,8 @@ require 'spec_helper' -describe UnitPrices do - subject { UnitPrices.new(variant) } +describe UnitPrice do + subject { UnitPrice.new(variant) } let(:variant) { Spree::Variant.new } let(:product) { instance_double(Spree::Product) }