From bfa3f5ba3930fb3919d94e97929a2b962d104e10 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 2 Jun 2017 00:44:32 -0700 Subject: 3900 --- html/050scenario.cc.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'html/050scenario.cc.html') diff --git a/html/050scenario.cc.html b/html/050scenario.cc.html index a692ab6b..db055536 100644 --- a/html/050scenario.cc.html +++ b/html/050scenario.cc.html @@ -454,7 +454,7 @@ if ('onhashchange' in window) { 387 :(before "End Primitive Recipe Implementations") 388 case MEMORY_SHOULD_CONTAIN: { 389 if (!Passed) break; -390 check_memory(current_instruction().ingredients.at(0).name); +390 check_memory(current_instruction().ingredients.at(0).name); 391 break; 392 } 393 @@ -662,7 +662,7 @@ if ('onhashchange' in window) { 595 :(before "End Primitive Recipe Implementations") 596 case TRACE_SHOULD_CONTAIN: { 597 if (!Passed) break; -598 check_trace(current_instruction().ingredients.at(0).name); +598 check_trace(current_instruction().ingredients.at(0).name); 599 break; 600 } 601 @@ -764,7 +764,7 @@ if ('onhashchange' in window) { 697 :(before "End Primitive Recipe Implementations") 698 case TRACE_SHOULD_NOT_CONTAIN: { 699 if (!Passed) break; -700 check_trace_missing(current_instruction().ingredients.at(0).name); +700 check_trace_missing(current_instruction().ingredients.at(0).name); 701 break; 702 } 703 @@ -841,17 +841,17 @@ if ('onhashchange' in window) { 774 case CHECK_TRACE_COUNT_FOR_LABEL: { 775 if (!Passed) break; 776 int expected_count = ingredients.at(0).at(0); -777 string label = current_instruction().ingredients.at(1).name; +777 string label = current_instruction().ingredients.at(1).name; 778 int count = trace_count(label); 779 if (count != expected_count) { 780 ¦ if (Current_scenario && !Scenario_testing_scenario) { 781 ¦ ¦ // genuine test in a .mu file -782 ¦ ¦ raise << "\nF - " << Current_scenario->name << ": " << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label '" << label << "' in trace: " << end(); +782 ¦ ¦ raise << "\nF - " << Current_scenario->name << ": " << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label '" << label << "' in trace: " << end(); 783 ¦ ¦ DUMP(label); 784 ¦ } 785 ¦ else { 786 ¦ ¦ // just testing scenario support -787 ¦ ¦ raise << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label '" << label << "' in trace\n" << end(); +787 ¦ ¦ raise << maybe(current_recipe_name()) << "expected " << expected_count << " lines in trace with label '" << label << "' in trace\n" << end(); 788 ¦ } 789 ¦ if (!Scenario_testing_scenario) Passed = false; 790 } -- cgit 1.4.1-2-gfad0