Skip to content

Commit b21ada2

Browse files
committed
fix lint
1 parent de19634 commit b21ada2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/graphql/subscriptions/anycable_subscriptions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def execute_grouped(fingerprint, subscription_ids, event, object)
102102
# Iterate through all subscriptions to find the subscription which:
103103
# 1. still exists in Redis
104104
# 2. got a result when updated with the event
105-
# This protects in cases where a subscription could expire between checking a subscription exists and
105+
# This protects in cases where a subscription could expire between checking a subscription existing and
106106
# update execution
107107
# We need only one working subscription, because the result will be shared with all subscribers
108108
with_redis do |redis|

spec/graphql/anycable_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@
202202

203203
it "raises configuration error" do
204204
expect { subject }.to raise_error(
205-
GraphQL::AnyCable::ChannelConfigurationError,
206-
/ActionCable channel wasn't provided in the context for GraphQL query execution!/
207-
)
205+
GraphQL::AnyCable::ChannelConfigurationError,
206+
/ActionCable channel wasn't provided in the context for GraphQL query execution!/
207+
)
208208
end
209209
end
210210

0 commit comments

Comments
 (0)