Skip to content

Commit

Permalink
Merge pull request #532 from nobu/skip-jruby
Browse files Browse the repository at this point in the history
Skip unsupported test on JRuby
  • Loading branch information
hsbt committed Jul 18, 2023
2 parents df47175 + 7138bf3 commit d88fea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/json_generator_test.rb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def to_s; self; end
end
end

if defined?(JSON::Ext::Generator)
if defined?(JSON::Ext::Generator) and RUBY_PLATFORM != "java"
def test_string_ext_included_calls_super
included = false

Expand Down

0 comments on commit d88fea4

Please sign in to comment.