summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-11 22:31:57 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-11 22:31:57 +0900
commit39ae88ad0dd0f8d7cf732e8567af13e7f2ce9748 (patch)
tree92758719eef3744825245c33c19f2fd158f9cbf8 /test
parent140b8117bd3c32cb9d0b144937b90f0178a00b0e (diff)
Refined syntax error messages
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_syntax.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 8112b14690..f2fcf671aa 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -977,8 +977,8 @@ eom
end
def test_safe_call_in_massign_lhs
- assert_syntax_error("*a&.x=0", /LHS/)
- assert_syntax_error("a&.x,=0", /LHS/)
+ assert_syntax_error("*a&.x=0", /multiple assignment destination/)
+ assert_syntax_error("a&.x,=0", /multiple assignment destination/)
end
def test_no_warning_logop_literal