Skip to content

Commit

Permalink
yeah how about you pay attention when doing ctrl+c/ctrl+v, v.
Browse files Browse the repository at this point in the history
  • Loading branch information
vddCore committed Apr 5, 2024
1 parent 0e46e30 commit 7de05c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VirtualMachine/Tests/Ceres.LanguageTests/tests/011_type.vil
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#[test] fn type_table() -> assert.equal(typeof({}), Table);
#[test] fn type_array() -> assert.equal(typeof(array(10)), Array);
#[test] fn type_chunk() -> assert.equal(typeof(testchunk), Function);
#[test] fn type_error() -> assert.equal(typeof(testchunk), Error);
#[test] fn type_error() -> assert.equal(typeof(error("uwu")), Error);
#[test] fn type_type() -> assert.equal(typeof(typeof(0)), Type);
#[test] fn type_nativefunction() -> assert.equal(typeof(__native_func), NativeFunction);
#[test] fn type_nativeobject() -> assert.equal(typeof(__native_object), NativeObject);
Expand Down Expand Up @@ -71,7 +71,7 @@ fn value_is_chunk() {
#[test]
fn value_is_error() {
val testval = error("hello!");
assert(testval is Function);
assert(testval is Error);
}

#[test]
Expand Down

0 comments on commit 7de05c7

Please sign in to comment.