Skip to content

Commit 6dc41c5

Browse files
committed
#542 use double quotes per quality_spec.rb:52
1 parent 7f4844a commit 6dc41c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/actions/directory_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,13 +148,13 @@ def exists_and_identical?(source_path, destination_path)
148148
expect(content).to match(%r{create app\{1\}/README})
149149
end
150150

151-
context 'windows temp directories', :if => windows? do
151+
context "windows temp directories", :if => windows? do
152152
let(:spec_dir) { File.join(@temp_dir, "spec") }
153153

154154
before(:each) do
155155
@temp_dir = Dir.mktmpdir("thor")
156156
Dir.mkdir(spec_dir)
157-
File.new(File.join(spec_dir, 'spec_helper.rb'), 'w')
157+
File.new(File.join(spec_dir, "spec_helper.rb"), "w")
158158
end
159159

160160
after(:each) { FileUtils.rm_rf(@temp_dir) }

0 commit comments

Comments
 (0)