Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2018-04-03 19:38:04 +0000
committerAlexander Kurtakov2018-06-13 13:28:26 +0000
commit47188bd002fd035df0966fa5639609752496c3f0 (patch)
tree63cec851f0a4f84c0415ed8c78ec769b3e107602 /bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox
parent799da4a57410d3d2a15c3ef49421e052aced6ab4 (diff)
downloadrt.equinox.p2-47188bd002fd035df0966fa5639609752496c3f0.tar.gz
rt.equinox.p2-47188bd002fd035df0966fa5639609752496c3f0.tar.xz
rt.equinox.p2-47188bd002fd035df0966fa5639609752496c3f0.zip
Minor - Fix typos
Rename "licence" to "license". All code changes are in tests or in classes of internal packages, therefore no public API changes. Change-Id: I39713a9a9c46cf230947e33765383cddb6d102c4 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox/p2/tests/ui/dialogs/InstallWizardTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox/p2/tests/ui/dialogs/InstallWizardTest.java b/bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox/p2/tests/ui/dialogs/InstallWizardTest.java
index eb8c88355..93c0c710e 100644
--- a/bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox/p2/tests/ui/dialogs/InstallWizardTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests.ui/src/org/eclipse/equinox/p2/tests/ui/dialogs/InstallWizardTest.java
@@ -130,13 +130,13 @@ public class InstallWizardTest extends WizardTest {
}
}
- public void testInstallWizardWithoutLicenceBypass() throws Exception {
+ public void testInstallWizardWithoutLicenseBypass() throws Exception {
ArrayList<IInstallableUnit> iusInvolved = new ArrayList<>();
iusInvolved.add(toInstall);
InstallOperation op = new MyNewInstallOperation(getSession(), iusInvolved);
op.setProfileId(TESTPROFILE);
PreselectedIUInstallWizard wizard = new PreselectedIUInstallWizard(getProvisioningUI(), op, iusInvolved, null);
- wizard.setBypassLicencePage(false);
+ wizard.setBypassLicensePage(false);
ProvisioningWizardDialog dialog = new ProvisioningWizardDialog(ProvUI.getDefaultParentShell(), wizard);
dialog.setBlockOnOpen(false);
dialog.open();
@@ -149,7 +149,7 @@ public class InstallWizardTest extends WizardTest {
// simulate the next button by getting next page and showing
InstallWizardPage installWizardPage = (InstallWizardPage) selectableIUsPage.getNextPage();
- assertFalse("Licence page bypass flag must be false", wizard.isBypassLicencePage());
+ assertFalse("License page bypass flag must be false", wizard.isBypassLicensePage());
IWizardPage licensePage = installWizardPage.getNextPage();
assertTrue("Expected instance of AcceptLicensesWizardPage", licensePage instanceof AcceptLicensesWizardPage);
@@ -160,13 +160,13 @@ public class InstallWizardTest extends WizardTest {
}
}
- public void testInstallWizardWithLicenceBypass() throws Exception {
+ public void testInstallWizardWithLicenseBypass() throws Exception {
ArrayList<IInstallableUnit> iusInvolved = new ArrayList<>();
iusInvolved.add(toInstall);
InstallOperation op = new MyNewInstallOperation(getSession(), iusInvolved);
op.setProfileId(TESTPROFILE);
PreselectedIUInstallWizard wizard = new PreselectedIUInstallWizard(getProvisioningUI(), op, iusInvolved, null);
- wizard.setBypassLicencePage(true);
+ wizard.setBypassLicensePage(true);
ProvisioningWizardDialog dialog = new ProvisioningWizardDialog(ProvUI.getDefaultParentShell(), wizard);
dialog.setBlockOnOpen(false);
dialog.open();
@@ -179,7 +179,7 @@ public class InstallWizardTest extends WizardTest {
// simulate the next button by getting next page and showing
InstallWizardPage installWizardPage = (InstallWizardPage) selectableIUsPage.getNextPage();
- assertTrue("Licence page bypass flag must be true", wizard.isBypassLicencePage());
+ assertTrue("License page bypass flag must be true", wizard.isBypassLicensePage());
IWizardPage licensePage = installWizardPage.getNextPage();
assertNull("Expected instance of AcceptLicensesWizardPage must be null", licensePage);

Back to the top