about summary refs log tree commit diff stats
path: root/051scenario_test.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-13 10:03:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-13 10:03:26 -0700
commit5497090aa1e708c22cd240913a53dda32bb067aa (patch)
tree5a9eb76d447736a8199230c9386bd0a374b325dd /051scenario_test.mu
parent01caf342d072115c27926b1a61c2fc75ab9fbee0 (diff)
downloadmu-5497090aa1e708c22cd240913a53dda32bb067aa.tar.gz
1363 - rename 'integer' to 'number'
..now that we support non-integers.
Diffstat (limited to '051scenario_test.mu')
-rw-r--r--051scenario_test.mu12
1 files changed, 6 insertions, 6 deletions
diff --git a/051scenario_test.mu b/051scenario_test.mu
index 5064f8a5..88085e9b 100644
--- a/051scenario_test.mu
+++ b/051scenario_test.mu
@@ -2,7 +2,7 @@
 
 scenario first_scenario_in_mu [
   run [
-    1:integer <- add 2:literal, 2:literal
+    1:number <- add 2:literal, 2:literal
   ]
   memory-should-contain [
     1 <- 4
@@ -12,7 +12,7 @@ scenario first_scenario_in_mu [
 scenario scenario_with_comment_in_mu [
   run [
     # comment
-    1:integer <- add 2:literal, 2:literal
+    1:number <- add 2:literal, 2:literal
   ]
   memory-should-contain [
     1 <- 4
@@ -23,7 +23,7 @@ scenario scenario_with_multiple_comments_in_mu [
   run [
     # comment1
     # comment2
-    1:integer <- add 2:literal, 2:literal
+    1:number <- add 2:literal, 2:literal
   ]
   memory-should-contain [
     1 <- 4
@@ -32,7 +32,7 @@ scenario scenario_with_multiple_comments_in_mu [
 
 scenario check_string_in_memory [
   run [
-    1:integer <- copy 3:literal
+    1:number <- copy 3:literal
     2:character <- copy 97:literal  # 'a'
     3:character <- copy 98:literal  # 'b'
     4:character <- copy 99:literal  # 'c'
@@ -44,7 +44,7 @@ scenario check_string_in_memory [
 
 scenario check_trace [
   run [
-    1:integer <- add 2:literal, 2:literal
+    1:number <- add 2:literal, 2:literal
   ]
   trace-should-contain [
     mem: storing 4 in location 1
@@ -53,7 +53,7 @@ scenario check_trace [
 
 scenario check_trace_negative [
   run [
-    1:integer <- add 2:literal, 2:literal
+    1:number <- add 2:literal, 2:literal
   ]
   trace-should-not-contain [
     mem: storing 5 in location 1