mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-23 13:16:48 +08:00
GP-0: Fix test
This commit is contained in:
+5
-2
@@ -633,8 +633,11 @@ public class DebuggerMemoryBytesProviderTest extends AbstractGhidraHeadedDebugge
|
||||
dialog1.okCallback();
|
||||
});
|
||||
|
||||
waitForPass(
|
||||
() -> assertEquals(tb.addr(0x00401234), memBytesProvider.getLocation().getAddress()));
|
||||
waitForPass(() -> {
|
||||
ProgramLocation loc = memBytesProvider.getLocation();
|
||||
assertNotNull(loc);
|
||||
assertEquals(tb.addr(0x00401234), loc.getAddress());
|
||||
});
|
||||
|
||||
performAction(memBytesProvider.actionGoTo, false);
|
||||
DebuggerGoToDialog dialog2 = waitForDialogComponent(DebuggerGoToDialog.class);
|
||||
|
||||
Reference in New Issue
Block a user