aboutsummaryrefslogtreecommitdiffstats
path: root/spec/lang
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lang')
-rw-r--r--spec/lang/array_spec.moon2
-rw-r--r--spec/lang/struct_spec.moon2
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/lang/array_spec.moon b/spec/lang/array_spec.moon
index 25c0167..2dd2894 100644
--- a/spec/lang/array_spec.moon
+++ b/spec/lang/array_spec.moon
@@ -83,7 +83,7 @@ describe "array", ->
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
- rt = COPILOT\eval_once '(insert (array "a" "b") 1 "c")'
+ rt = COPILOT\eval_once '(insert (array "a" "b") 2 "c")'
assert.is.true rt\is_const!
assert.is.equal svec3\mk_const({ 'a', 'b', 'c' }), rt.result
diff --git a/spec/lang/struct_spec.moon b/spec/lang/struct_spec.moon
index aa7b689..9d2286e 100644
--- a/spec/lang/struct_spec.moon
+++ b/spec/lang/struct_spec.moon
@@ -38,7 +38,7 @@ describe "struct", ->
it "doesn't clobber existing members", ->
err = assert.has.error -> COPILOT\eval_once '(insert (struct "a" 1) "a" 2)'
- assert.matches "TBD", err
+ assert.matches "key 'a' already exists in value of type {a: num}", err
describe "(remove)", ->
it "can remove members", ->