Skip to content

Commit 5e47a1a

Browse files
committed
updated after rebase
1 parent cc82f1f commit 5e47a1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/lib/graphql/object_association_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
scope do |name: nil|
1616
if name
17-
User.where(name: name)
17+
::HasHelpers::User.where(name: name)
1818
end
1919
end
2020
end

spec/lib/graphql/paginated_association_loader_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def load(association, **options)
9090
user3.update(advisor: advisor3)
9191

9292
# Create dummy data to verify data is properly filtered
93-
other_user = ::User.find_by(manager: manager2)
93+
other_user = ::HasHelpers::User.find_by(manager: manager2)
9494
2.times do
9595
advisor = ::FactoryBot.create(:advisor, organization: organization)
9696
other_user.update(advisor: advisor)

0 commit comments

Comments
 (0)