File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed
Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ def serialize
130130 sig { params ( other : T . nilable ( Session ) ) . returns ( T ::Boolean ) }
131131 def ==( other )
132132 if other
133- (
134- id == other . id &&
133+
134+ id == other . id &&
135135 shop == other . shop &&
136136 state == other . state &&
137137 scope == other . scope &&
@@ -140,7 +140,7 @@ def ==(other)
140140 online? == other . online? &&
141141 associated_user == other . associated_user &&
142142 shopify_session_id == other . shopify_session_id
143- )
143+
144144 else
145145 false
146146 end
Original file line number Diff line number Diff line change 11# typed: true
22# frozen_string_literal: true
33
4- require_relative "./ test_helper"
4+ require_relative "test_helper"
55
66module ShopifyAPITest
77 class AdminVersionsTest < Minitest ::Test
Original file line number Diff line number Diff line change 11# typed: false
22# frozen_string_literal: true
33
4- require_relative "./ test_helper"
4+ require_relative "test_helper"
55
66module ShopifyAPITest
77 class AuthTest < Test ::Unit ::TestCase
Original file line number Diff line number Diff line change 11# typed: true
22# frozen_string_literal: true
33
4- require_relative "./ test_helper"
4+ require_relative "test_helper"
55
66module ShopifyAPITest
77 class ContextTest < Minitest ::Test
Original file line number Diff line number Diff line change 11# typed: true
22# frozen_string_literal: true
33
4- require_relative "./ test_helper"
4+ require_relative "test_helper"
55
66module ShopifyAPITest
77 class LoggerTest < Minitest ::Test
Original file line number Diff line number Diff line change 1212require "shopify_api"
1313require "pry-byebug"
1414
15- require_relative ( "./ test_helpers/constants.rb" )
15+ require_relative ( "test_helpers/constants.rb" )
1616
1717Dir [ File . dirname ( __FILE__ ) + "/test_helpers/*.rb" ] . each { |file | require file }
1818
Original file line number Diff line number Diff line change 22# frozen_string_literal: true
33
44require_relative "../test_helper.rb"
5- require_relative "./ webhook_registration_queries.rb"
5+ require_relative "webhook_registration_queries.rb"
66
77module ShopifyAPITest
88 module Webhooks
You can’t perform that action at this time.
0 commit comments