| author | akozak | 2011-11-23 08:15:22 (EST) |
|---|---|---|
| committer | Winston Prakash | 2011-12-01 20:47:09 (EST) |
| commit | d10645a444572c37dccb09dd54a2323bf2a49f40 (patch) (side-by-side diff) | |
| tree | 63cfee1b60b8eff5fe6a54827d0fbd5a50ed3ecc | |
| parent | 5eeb1f497f7eec71a960fa62f92128b7ba3ed95b (diff) | |
| download | org.eclipse.hudson.core-d10645a444572c37dccb09dd54a2323bf2a49f40.zip org.eclipse.hudson.core-d10645a444572c37dccb09dd54a2323bf2a49f40.tar.gz org.eclipse.hudson.core-d10645a444572c37dccb09dd54a2323bf2a49f40.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(); |

