Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/jrubyc/java/files/operands.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
def numbers
[1r, 1c, 1, 1.0]
[1r, 1i, 1, 1.0]
end

$numbers_result = numbers
2 changes: 1 addition & 1 deletion spec/jrubyc/java/loading_spec.rb
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ def compile_files(files)
it "can load all number operands" do
load File.join(FILES_DIR, 'operands.class')

expect( $numbers_result ).to eql [1r, 1c, 1, 1.0]
expect( $numbers_result ).to eql [1r, 1i, 1, 1.0]
end

it "compiles hashy_kwargs.class correctly" do

0 comments on commit 87c188e

Please sign in to comment.