From 25b61f145cb08479396181b7320ca4af86ded77a Mon Sep 17 00:00:00 2001 From: Curran McConnell <curran.mcconnell@protonmail.com> Date: Thu, 24 Aug 2023 14:19:19 -0400 Subject: [PATCH] more suggestive test names --- testsuite/tests/ghci/scripts/T23614.script | 4 ++-- testsuite/tests/ghci/scripts/T23614.stderr | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/testsuite/tests/ghci/scripts/T23614.script b/testsuite/tests/ghci/scripts/T23614.script index b702db0bc336..2c33172633f6 100644 --- a/testsuite/tests/ghci/scripts/T23614.script +++ b/testsuite/tests/ghci/scripts/T23614.script @@ -1,2 +1,2 @@ -let spelled = 100 -:i spelld +let misspelled = 100 +:i mispelled diff --git a/testsuite/tests/ghci/scripts/T23614.stderr b/testsuite/tests/ghci/scripts/T23614.stderr index 0135608e2854..d4c69def73c5 100644 --- a/testsuite/tests/ghci/scripts/T23614.stderr +++ b/testsuite/tests/ghci/scripts/T23614.stderr @@ -1,4 +1,4 @@ -<interactive>:1:1: error: [GHC-88464] - Variable not in scope: spelld - Suggested fix: Perhaps use ‘spelled’ (line 1) +<interactive>:1:1: error: [GHC-76037] + Not in scope: ‘mispelled’ + Suggested fix: Perhaps use ‘misspelled’ (Defined at <interactive>:1:5) -- GitLab