about summary refs log tree commit diff stats
path: root/082scenario_screen.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-15 20:57:43 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-15 20:57:43 -0700
commitf510af3bae170e89fba8bd118e1e5a36451e3c97 (patch)
tree4d8f76365d8d8fac23181965e14818cbfa5bc6fe /082scenario_screen.cc
parent8140ff135348ca7ec0e9099069e1fc14b56031ee (diff)
downloadmu-f510af3bae170e89fba8bd118e1e5a36451e3c97.tar.gz
3500
Diffstat (limited to '082scenario_screen.cc')
-rw-r--r--082scenario_screen.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/082scenario_screen.cc b/082scenario_screen.cc
index b99982bb..ba5508e7 100644
--- a/082scenario_screen.cc
+++ b/082scenario_screen.cc
@@ -11,7 +11,7 @@ recipes_taking_literal_strings.insert("screen-should-contain-in-color");
 
 :(scenarios run_mu_scenario)
 :(scenario screen_in_scenario)
-scenario screen-in-scenario [
+scenario foo [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -28,7 +28,7 @@ scenario screen-in-scenario [
 # checks are inside scenario
 
 :(scenario screen_in_scenario_unicode)
-scenario screen-in-scenario-unicode-color [
+scenario foo [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -48,7 +48,7 @@ scenario screen-in-scenario-unicode-color [
 
 :(scenario screen_in_scenario_color)
 # screen-should-contain can check unicode characters in the fake screen
-scenario screen-in-scenario-color [
+scenario foo [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -85,7 +85,7 @@ scenario screen-in-scenario-color [
 :(scenario screen_in_scenario_error)
 % Scenario_testing_scenario = true;
 % Hide_errors = true;
-scenario screen-in-scenario-error [
+scenario foo [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -105,7 +105,7 @@ scenario screen-in-scenario-error [
 % Scenario_testing_scenario = true;
 % Hide_errors = true;
 # screen-should-contain can check unicode characters in the fake screen
-scenario screen-in-scenario-color [
+scenario foo [
   local-scope
   assume-screen 5/width, 3/height
   run [
@@ -175,10 +175,10 @@ if (curr.name == "assume-screen") {
 
 :(scenario assume_screen_shows_up_in_errors)
 % Hide_errors = true;
-scenario error-in-assume-screen [
+scenario foo [
   assume-screen width, 5
 ]
-+error: scenario_error-in-assume-screen: missing type for 'width' in 'assume-screen width, 5'
++error: scenario_foo: missing type for 'width' in 'assume-screen width, 5'
 
 //: screen-should-contain is a regular instruction
 :(before "End Primitive Recipe Declarations")