Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Formating UtDebugger and fixing manually
Browse files Browse the repository at this point in the history
  • Loading branch information
vncoelho committed Aug 26, 2019
1 parent d49efba commit 6df61f3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/neo-vm.Tests/UtDebugger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void TestStepOver()
│ ┌> NOT
│ │ RET
└> │ PUSH0
└─┘ RET */
└─┘ RET */
script.EmitJump(OpCode.CALL, 5);
script.Emit(OpCode.NOT);
script.Emit(OpCode.RET);
Expand Down Expand Up @@ -168,15 +168,15 @@ public void TestBreakPointStepOver()
using (var engine = new ExecutionEngine())
using (var script = new ScriptBuilder())
{
/* ┌ */
/* ┌ CALL
│ ┌> NOT
│ │ RET
└>X│ PUSH0
└┘ RET */
script.EmitJump(OpCode.CALL, 5);
/* │ ┌> */
script.Emit(OpCode.NOT);
/* │ │ */
script.Emit(OpCode.RET);
/* └>X│ */
script.Emit(OpCode.PUSH0);
/* └┘ */
script.Emit(OpCode.RET);

engine.LoadScript(script.ToArray());
Expand Down

0 comments on commit 6df61f3

Please sign in to comment.