From da01a03a6e4c45b0a552b02dec23e0fdf9393707 Mon Sep 17 00:00:00 2001 From: whitequark Date: Thu, 20 Sep 2018 10:01:32 +0000 Subject: [PATCH] Fix b91822ff. --- artiq/test/lit/escape/error_mutable_aug_asgn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/test/lit/escape/error_mutable_aug_asgn.py b/artiq/test/lit/escape/error_mutable_aug_asgn.py index 1cdbd8838..ca4811768 100644 --- a/artiq/test/lit/escape/error_mutable_aug_asgn.py +++ b/artiq/test/lit/escape/error_mutable_aug_asgn.py @@ -6,7 +6,7 @@ from artiq.experiment import * @kernel def entrypoint(): a = [1,2] - # CHECK-L: ${LINE:+2}: error: lists cannot be mutated in-place + # CHECK-L: ${LINE:+2}: error: values cannot be mutated in-place # CHECK-L: ${LINE:+1}: note: try using `a = a + [3,4]` a += [3,4]