Skip to content

Commit

Permalink
Tests fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonmacher committed May 19, 2022
1 parent a37f663 commit 36b17dd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import docking.tool.util.DockingToolConstants;
import docking.widgets.table.TableSortState;
import ghidra.app.nav.Navigatable;
import ghidra.app.nav.TestDummyNavigatable;
import ghidra.framework.options.ToolOptions;
import ghidra.framework.plugintool.DummyPluginTool;
import ghidra.program.database.ProgramBuilder;
Expand Down Expand Up @@ -96,7 +97,7 @@ private void createDialog(SpyTableChooserExecutor dialogExecutor) throws Excepti
addresses.add(f.getEntryPoint());

Program program = builder.getProgram();
Navigatable navigatable = null;
Navigatable navigatable = new TestDummyNavigatable();
runSwing(() -> dialog =
new TableChooserDialog(tool, executor, program, "Dialog Title", navigatable));

Expand Down

0 comments on commit 36b17dd

Please sign in to comment.