Skip to content

Commit 34c274d

Browse files
committed
Fix rubocop: rename ruby-liquid.rb to ruby_liquid.rb and add trailing comma
1 parent 533d470 commit 34c274d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/liquid.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
bundler-cache: true
5454
bundler: latest
55-
- run: bundle exec liquid-spec run spec/ruby-liquid.rb --no-max-failures
55+
- run: bundle exec liquid-spec run spec/ruby_liquid.rb --no-max-failures
5656

5757
memory_profile:
5858
runs-on: ubuntu-latest
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Liquid Spec Adapter for Shopify/liquid (Ruby reference implementation)
44
#
5-
# Run with: bundle exec liquid-spec run spec/ruby-liquid.rb
5+
# Run with: bundle exec liquid-spec run spec/ruby_liquid.rb
66

77
$LOAD_PATH.unshift(File.expand_path('../lib', __dir__))
88
require 'liquid'
@@ -25,7 +25,7 @@
2525
context = Liquid::Context.build(
2626
static_environments: ctx.environment,
2727
registers: registers,
28-
rethrow_errors: ctx.rethrow_errors?
28+
rethrow_errors: ctx.rethrow_errors?,
2929
)
3030

3131
context.exception_renderer = ctx.exception_renderer if ctx.exception_renderer

0 commit comments

Comments
 (0)