Skip to content

Commit fab7eab

Browse files
committed
test: use double quote for string literal
1 parent c86cec0 commit fab7eab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fiddle/test_function.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ def test_last_error
100100

101101
if WINDOWS
102102
def test_win32_last_error
103-
kernel32 = Fiddle.dlopen('kernel32')
104-
args = [kernel32['SetLastError'], [TYPE_LONG], TYPE_VOID]
103+
kernel32 = Fiddle.dlopen("kernel32")
104+
args = [kernel32["SetLastError"], [TYPE_LONG], TYPE_VOID]
105105
args << Function::STDCALL if Function.const_defined?(:STDCALL)
106106
set_last_error = Function.new(*args)
107107
assert_nil(Fiddle.win32_last_error)

0 commit comments

Comments
 (0)