test/cli/commands/test_check.rb in nanoc-4.2.1 vs test/cli/commands/test_check.rb in nanoc-4.2.2

- old
+ new

@@ -2,15 +2,15 @@ def test_check_stale with_site do |_site| FileUtils.mkdir_p('output') # Should not raise now - Nanoc::CLI.run %w( check stale ) + Nanoc::CLI.run %w(check stale) # Should raise now File.open('output/blah.html', 'w') { |io| io.write 'moo' } assert_raises Nanoc::Int::Errors::GenericTrivial do - Nanoc::CLI.run %w( check stale ) + Nanoc::CLI.run %w(check stale) end end end end