From a64206aa9531eed4618c1945949d0e3baacadf39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Mon, 8 Mar 2021 19:12:44 +0100 Subject: [PATCH] Fix compatibility with mruby3 --- test/ansi_color.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ansi_color.rb b/test/ansi_color.rb index 31173e3..3b5f552 100644 --- a/test/ansi_color.rb +++ b/test/ansi_color.rb @@ -40,5 +40,5 @@ end assert('Print string in every color') do - "".colors.each { |c| print ".".send(c)} + "".colors.each { |c| print ".".__send__(c)} end