Skip to content

Commit

Permalink
Update test/vc_test/generator_test.cs
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
0xF6 and coderabbitai[bot] authored Jun 25, 2024
1 parent e69e5d5 commit a7b8577
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/vc_test/generator_test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public void Test()
method.Flags = MethodFlags.Public | MethodFlags.Static;
var gen = method.GetGenerator();

var l1 = gen.DefineLabel("1");
var l2 = gen.DefineLabel("2");
var l1 = gen.DefineLabel("start_loop");
var l2 = gen.DefineLabel("end_loop");
gen.Emit(OpCodes.ADD);
gen.Emit(OpCodes.LDC_I4_S, 228);
gen.Emit(OpCodes.ADD);
Expand Down

0 comments on commit a7b8577

Please sign in to comment.