mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-0: Fix test
This commit is contained in:
parent
8f5ebf122e
commit
e665c3abf7
1 changed files with 5 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue