From fd3a09dd4da0b71ef44b3b978590da4cf3a50ed4 Mon Sep 17 00:00:00 2001 From: whitequark Date: Tue, 3 Oct 2017 05:49:50 +0000 Subject: [PATCH] Fix ca254ec5. --- .../{error_mutable_aug_asgn.py => error_list_aug_asgn.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename artiq/test/lit/escape/{error_mutable_aug_asgn.py => error_list_aug_asgn.py} (79%) diff --git a/artiq/test/lit/escape/error_mutable_aug_asgn.py b/artiq/test/lit/escape/error_list_aug_asgn.py similarity index 79% rename from artiq/test/lit/escape/error_mutable_aug_asgn.py rename to artiq/test/lit/escape/error_list_aug_asgn.py index ca4811768..1cdbd8838 100644 --- a/artiq/test/lit/escape/error_mutable_aug_asgn.py +++ b/artiq/test/lit/escape/error_list_aug_asgn.py @@ -6,7 +6,7 @@ from artiq.experiment import * @kernel def entrypoint(): a = [1,2] - # CHECK-L: ${LINE:+2}: error: values cannot be mutated in-place + # CHECK-L: ${LINE:+2}: error: lists cannot be mutated in-place # CHECK-L: ${LINE:+1}: note: try using `a = a + [3,4]` a += [3,4]