From 5b7cf219b81aa04d6836845596af7d86a26ec31a Mon Sep 17 00:00:00 2001 From: Vadim Kononov Date: Tue, 5 Mar 2024 14:47:23 -0600 Subject: [PATCH] Fix a broken test. --- test/package/test_audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/package/test_audit.rb b/test/package/test_audit.rb index d5be99c..cf2928d 100644 --- a/test/package/test_audit.rb +++ b/test/package/test_audit.rb @@ -59,7 +59,7 @@ def test_that_the_exit_code_is_1_when_report_is_not_empty def test_that_there_is_a_report_of_gems output = `bundle exec package-audit test/files/gemfile/report` - assert_match 'Found a total of 3 ruby packages.', output + assert_match 'Found a total of 3 Ruby packages.', output assert_match '1 vulnerable (11 vulnerabilities), 2 outdated, 1 deprecated.', output end