Skip to content

Commit 2840414

Browse files
committed
Run rubocop
1 parent e293cc1 commit 2840414

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/test_rake_file_utils.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,12 @@ def test_safe_ln_fails_on_script_error
107107
def test_verbose
108108
verbose true
109109
assert_equal true, verbose
110-
assert_equal '-v', ENV['TESTOPTS']
110+
assert_equal "-v", ENV["TESTOPTS"]
111111

112-
ENV['TESTOPTS'] = nil
112+
ENV["TESTOPTS"] = nil
113113
verbose false
114114
assert_equal false, verbose
115-
assert_equal nil, ENV['TESTOPTS']
115+
assert_equal nil, ENV["TESTOPTS"]
116116

117117
verbose(true) {
118118
assert_equal true, verbose

0 commit comments

Comments
 (0)