Skip to content

Commit

Permalink
Fix JENKINS-12336
Browse files Browse the repository at this point in the history
  • Loading branch information
Florence.Chabanois committed Jan 23, 2012
1 parent d1f6e4e commit be78af4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -14,8 +14,8 @@
public class CheckType extends TestType {

@DataBoundConstructor
public CheckType(String pattern, boolean failureIfNotNew, boolean deleteOutputFiles, boolean stopProcessingIfError) {
super(pattern, failureIfNotNew, deleteOutputFiles, stopProcessingIfError);
public CheckType(String pattern, boolean faildedIfNotNew, boolean deleteOutputFiles, boolean stopProcessingIfError) {
super(pattern, faildedIfNotNew, deleteOutputFiles, stopProcessingIfError);
}

@Extension
Expand Down
Expand Up @@ -14,8 +14,8 @@
public class JUnitType extends TestType {

@DataBoundConstructor
public JUnitType(String pattern, boolean failureIfNotNew, boolean deleteOutputFiles, boolean stopProcessingIfError) {
super(pattern, failureIfNotNew, deleteOutputFiles, stopProcessingIfError);
public JUnitType(String pattern, boolean faildedIfNotNew, boolean deleteOutputFiles, boolean stopProcessingIfError) {
super(pattern, faildedIfNotNew, deleteOutputFiles, stopProcessingIfError);
}

@Extension
Expand Down

0 comments on commit be78af4

Please sign in to comment.