Skip to content

Commit b28d94f

Browse files
committed
Fix lint error
1 parent e20b1fd commit b28d94f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/graphql/dataloader_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -757,10 +757,10 @@ def fetch(ids)
757757
assert_equal({ d: 4 }, result)
758758

759759
dl.run_isolated {
760-
r1 = dl.with(RunIsolated::CountSource).request(1)
761-
r2 = dl.with(RunIsolated::CountSource).request(2)
760+
_r1 = dl.with(RunIsolated::CountSource).request(1)
761+
_r2 = dl.with(RunIsolated::CountSource).request(2)
762762
r3 = dl.with(RunIsolated::CountSource).request(3)
763-
# This is going to Fiber.yield
763+
# This is going to `Fiber.yield`
764764
result[:e] = r3.load
765765
}
766766

0 commit comments

Comments
 (0)