summaryrefslogtreecommitdiff
path: root/spec/support/platforms/win32/spec_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/platforms/win32/spec_service.rb')
-rw-r--r--spec/support/platforms/win32/spec_service.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/support/platforms/win32/spec_service.rb b/spec/support/platforms/win32/spec_service.rb
index 3e1f6c3638..037ccc93de 100644
--- a/spec/support/platforms/win32/spec_service.rb
+++ b/spec/support/platforms/win32/spec_service.rb
@@ -16,7 +16,7 @@
# limitations under the License.
#
-require 'win32/daemon'
+require "win32/daemon"
class SpecService < ::Win32::Daemon
def service_init
@@ -26,7 +26,7 @@ class SpecService < ::Win32::Daemon
def service_main(*startup_parameters)
while running? do
if !File.exists?(@test_service_file)
- File.open(@test_service_file, 'wb') do |f|
+ File.open(@test_service_file, "wb") do |f|
f.write("This file is created by SpecService")
end
end