Skip to content

Commit c950ab7

Browse files
committed
Update test routine
Minitest no longer uses the `MiniTest` with capital `T` since forever
1 parent 3a2aa6c commit c950ab7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on: [push]
22
jobs:
3-
build:
3+
test:
44
runs-on: ubuntu-latest
55

66
steps:
@@ -9,6 +9,6 @@ jobs:
99
submodules: true
1010
- uses: ruby/setup-ruby@v1
1111
with:
12-
ruby-version: 3.1
12+
ruby-version: 3.2
1313
- run: gem install jls-grok minitest
1414
- run: ruby test/test.rb

test/test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# It creates test cases from all yaml files in the current
1313
# directory.
1414

15-
class TestGrokPatterns < MiniTest::Test
15+
class TestGrokPatterns < Minitest::Test
1616

1717
@@test_dir = File.dirname(__FILE__)
1818
@@upstream_pattern_dir = @@test_dir + '/logstash-patterns-core/patterns/ecs-v1/'

0 commit comments

Comments
 (0)