From ecde465098a622e55a643ca1197c195ff8b5c73e Mon Sep 17 00:00:00 2001 From: Jeremy Hinegardner Date: Thu, 2 May 2024 21:49:23 -0600 Subject: [PATCH] preferred delimiters --- spec/cli_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/cli_spec.rb b/spec/cli_spec.rb index 4c85428..921d6cd 100644 --- a/spec/cli_spec.rb +++ b/spec/cli_spec.rb @@ -55,7 +55,7 @@ def cli_test(argv, env, exit_val, stderr_regex, stdout_regex) it "prints the command on stdout when using --dry-run" do argv = %w[--debug --dry-run https://github.com/copiousfreetime/launchy] Launchy::Cli.new.good_run(argv, {}) - _($stdout.string).must_match %r[github.com] + _($stdout.string).must_match %r{github.com} end {