Skip to content

Commit

Permalink
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ext/zlib/RubyZlib.java
Original file line number Diff line number Diff line change
@@ -251,7 +251,7 @@ public static IRubyObject adler32(IRubyObject recv, IRubyObject[] args) {
return recv.getRuntime().newFixnum(result);
}

@JRubyMethod
@JRubyMethod(module = true)
public static IRubyObject inflate(ThreadContext context, IRubyObject recv, IRubyObject string) {
return JZlibInflate.s_inflate(context, recv, string);
}
1 change: 0 additions & 1 deletion test/mri/excludes/TestZlibDeflate.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
exclude :test_deflate_chunked, "needs investigation"
exclude :test_deflate_chunked_break, "needs investigation"
exclude :test_deflate_stream, "#2128"
1 change: 0 additions & 1 deletion test/mri/excludes/TestZlibGzipReader.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
exclude :test_encoding, "needs investigation"
exclude :test_gets2, "encoding problem?"

0 comments on commit a512032

Please sign in to comment.