From bbe6fda170575208b78d5fc5568084eb673c95de Mon Sep 17 00:00:00 2001 From: Peter Bhat Harkins Date: Sat, 1 Mar 2025 15:28:52 -0600 Subject: [PATCH] cli: fix running multiple test files --- lib/quickdraw/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/quickdraw/cli.rb b/lib/quickdraw/cli.rb index bb2d64c..4bc6730 100644 --- a/lib/quickdraw/cli.rb +++ b/lib/quickdraw/cli.rb @@ -55,7 +55,7 @@ def parse_options end def parse_files - @files = @args[0] || "./**/*.test.rb" + @files = @args || "./**/*.test.rb" end def backtrace=(value)