Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4dd37024b366
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f723036164ac
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 17, 2016

  1. Copy the full SHA
    822705a View commit details
  2. Copy the full SHA
    f75647a View commit details
  3. Copy the full SHA
    f723036 View commit details
Showing with 1 addition and 2 deletions.
  1. +1 −1 core/src/test/java/org/jruby/test/TestJavaUtil.java
  2. +0 −1 test/jruby/test_loading_builtin_libraries.rb
2 changes: 1 addition & 1 deletion core/src/test/java/org/jruby/test/TestJavaUtil.java
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ public void setUp() {

public void testConvertJavaToRuby() {
assertEquals(JavaUtil.convertJavaToRuby(runtime, null).getType().name().toString(), "NilClass");
assertEquals(JavaUtil.convertJavaToRuby(runtime, new Integer(1000)).getType().name().toString(), "Fixnum");
assertEquals(JavaUtil.convertJavaToRuby(runtime, new Integer(1000)).getType().name().toString(), "Integer");
assertEquals(JavaUtil.convertJavaToRuby(runtime, new Double(1.0)).getType().name().toString(), "Float");
assertEquals(JavaUtil.convertJavaToRuby(runtime, Boolean.TRUE).getType().name().toString(), "TrueClass");
assertEquals(JavaUtil.convertJavaToRuby(runtime, Boolean.FALSE).getType().name().toString(), "FalseClass");
1 change: 0 additions & 1 deletion test/jruby/test_loading_builtin_libraries.rb
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ def test_late_bound_libraries
require 'strscan.so'
require 'zlib.so'
require 'enumerator.so'
require 'thread.so'
require 'digest.so'
require 'digest.rb'
require 'digest/md5.so'