| author | akozak | 2011-11-23 08:15:22 (EST) |
|---|---|---|
| committer | Winston Prakash | 2011-12-01 20:47:09 (EST) |
| commit | de9cbfc66c2fe61355d580f38f2d1d622f4497b9 (patch) (side-by-side diff) | |
| tree | 5f84d49e3c942e61c418a7768ab442799efd1c98 | |
| parent | 00fe49d4ab0087511a4281d64aebf12835594da5 (diff) | |
| download | org.eclipse.hudson.core-de9cbfc66c2fe61355d580f38f2d1d622f4497b9.zip org.eclipse.hudson.core-de9cbfc66c2fe61355d580f38f2d1d622f4497b9.tar.gz org.eclipse.hudson.core-de9cbfc66c2fe61355d580f38f2d1d622f4497b9.tar.bz2 | |
Fix invalid encoding for LegacyTest file
Signed-off-by: Winston Prakash <winston.prakash@gmail.com>
| -rw-r--r-- | hudson-core/src/test/java/hudson/model/LegacyProjectTest.java | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/hudson-core/src/test/java/hudson/model/LegacyProjectTest.java b/hudson-core/src/test/java/hudson/model/LegacyProjectTest.java index 51cc0d4..539c50f 100644 --- a/hudson-core/src/test/java/hudson/model/LegacyProjectTest.java +++ b/hudson-core/src/test/java/hudson/model/LegacyProjectTest.java @@ -56,7 +56,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyCustomWorkspaceProperty() throws Exception { + public void testConvertLegacyCustomWorkspaceProperty() throws Exception { FreeStyleProject project = (FreeStyleProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -72,7 +72,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyBuildersProperty() throws Exception { + public void testConvertLegacyBuildersProperty() throws Exception { Project project = (Project) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -93,7 +93,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyBuildWrappersProperty() throws Exception { + public void testConvertLegacyBuildWrappersProperty() throws Exception { Project project = (Project) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -114,7 +114,7 @@ public class LegacyProjectTest { @Test @Ignore //TODO investigate how to mock descriptor loading and creation. - public void testСonvertPublishersProperty() throws Exception { + public void testConvertPublishersProperty() throws Exception { Hudson hudson = createMock(Hudson.class); expect(hudson.getDescriptorOrDie(Mailer.class)).andReturn(new Mailer.DescriptorImpl()); expect(hudson.getDescriptorOrDie(JUnitResultArchiver.class)).andReturn( @@ -143,7 +143,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyBlockBuildWhenDownstreamBuildingProperty() throws Exception { + public void testConvertLegacyBlockBuildWhenDownstreamBuildingProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -159,7 +159,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyBlockBuildWhenUpstreamBuildingProperty() throws Exception { + public void testConvertLegacyBlockBuildWhenUpstreamBuildingProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -175,7 +175,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyConcurrentBuildProperty() throws Exception { + public void testConvertLegacyConcurrentBuildProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -191,7 +191,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyCleanWorkspaceRequiredProperty() throws Exception { + public void testConvertLegacyCleanWorkspaceRequiredProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -207,7 +207,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyQuietPeriodProperty() throws Exception { + public void testConvertLegacyQuietPeriodProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -223,7 +223,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyScmCheckoutRetryCountProperty() throws Exception { + public void testConvertLegacyScmCheckoutRetryCountProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -239,7 +239,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyJDKProperty() throws Exception { + public void testConvertLegacyJDKProperty() throws Exception { AbstractProject project = (AbstractProject) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); @@ -255,7 +255,7 @@ public class LegacyProjectTest { * @throws Exception if any. */ @Test - public void testСonvertLegacyLogRotatorProperty() throws Exception { + public void testConvertLegacyLogRotatorProperty() throws Exception { Job project = (Job) Items.getConfigFile(config).read(); project.setAllowSave(false); project.initProjectProperties(); |

