Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/compiler/general_spec.rb
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ def compile_run(src, filename, line)
run("1r") {|result| expect(result).to eq (Rational(1, 1))}
run("1.1r") {|result| expect(result).to eq (Rational(11, 10))}
run("1i") {|result| expect(result).to eq (Complex(0, 1))}
pending("needs parser support") { run("1.1i") {|result| expect(result).to eq (Complex(0, 1.1))} }
run("1.1i") {|result| expect(result).to eq (Complex(0, 1.1))}
end

it "compiles interpolated strings" do

0 comments on commit 8a7b270

Please sign in to comment.