GP-205 - Structure Editor - fixed 'Edit Component' action to unroll the

edited data type

Closes #1633
This commit is contained in:
dragonmacher 2020-09-25 15:43:10 -04:00
parent e5358323d8
commit a703304bb4
6 changed files with 120 additions and 120 deletions

View file

@ -271,7 +271,7 @@ public class ComponentProviderActionsTest extends AbstractGhidraHeadedIntegratio
try {
setErrorsExpected(true);
runSwingWithExceptions(this::showProvider, true);
runSwingWithException(this::showProvider);
setErrorsExpected(false);
fail();
}
@ -289,7 +289,7 @@ public class ComponentProviderActionsTest extends AbstractGhidraHeadedIntegratio
try {
setErrorsExpected(true);
runSwingWithExceptions(() -> provider.setIcon(null), true);
runSwingWithException(() -> provider.setIcon(null));
setErrorsExpected(false);
fail("Expected an exception passing a null icon when specifying a toolbar action");
}