Skip to content

Commit

Permalink
svf: minor test edits
Browse files Browse the repository at this point in the history
  • Loading branch information
tempname11 committed Nov 10, 2023
1 parent 5aef896 commit 7f3e875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion svf_tools/src/test/simple/b.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void test_read(vm::LinearArena *arena, Bytes input_range) {
ASSERT(entry->removeOption1_tag == schema::RemoveOption_tag::one);
ASSERT(entry->removeOption1_payload.one == 70);

ASSERT(entry->removeOption2_tag == schema::RemoveOption_tag(0)); // FIXME
ASSERT(entry->removeOption2_tag == schema::RemoveOption_tag::nothing);

ASSERT(entry->primitives.u8u16 == 49);
ASSERT(entry->primitives.u8u32 == 50);
Expand Down
2 changes: 1 addition & 1 deletion svf_tools/src/test/simple/d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void test_read(vm::LinearArena *arena, Bytes input_range) {
ASSERT(entry->removeOption1_tag == schema::RemoveOption_tag::one);
ASSERT(entry->removeOption1_payload.one == 70);

ASSERT(entry->removeOption2_tag == schema::RemoveOption_tag(0)); // FIXME
ASSERT(entry->removeOption2_tag == schema::RemoveOption_tag::nothing);

ASSERT(entry->primitives.u8u16 == 49);
ASSERT(entry->primitives.u8u32 == 50);
Expand Down

0 comments on commit 7f3e875

Please sign in to comment.