summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorPavel Rosický <pavel.rosicky@easy.cz>2022-12-15 19:52:09 +0100
committerPavel Rosický <pavel.rosicky@easy.cz>2022-12-15 19:52:09 +0100
commitf17c77d7676b73a5ebaa9287fe8cf6bd83aa5a4a (patch)
tree8c879c3c66f3440eaa28f56b3f5fe0ad3ef90a54 /spec
parent925fed4413ce28fd49ced494ce95d195a9503518 (diff)
downloadffi-f17c77d7676b73a5ebaa9287fe8cf6bd83aa5a4a.tar.gz
reenable last error spec
Diffstat (limited to 'spec')
-rw-r--r--spec/ffi/errno_spec.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/ffi/errno_spec.rb b/spec/ffi/errno_spec.rb
index 6baeaab..4170f92 100644
--- a/spec/ffi/errno_spec.rb
+++ b/spec/ffi/errno_spec.rb
@@ -25,7 +25,6 @@ describe "FFI.errno" do
LibTest.setErrno(0x2A)
expect(FFI.errno).to eq(0x2A)
when "windows"
- skip "not yet supported on JRuby on Windows (https://github.com/jruby/jruby/issues/7521)" if RUBY_ENGINE == "jruby"
expect(FFI::LastError.winapi_error).to eq(0x12345678)
expect(FFI.errno).to eq(0x12345678)
else