Skip to content

Commit

Permalink
Fixed ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
imago-storm committed Aug 30, 2018
1 parent 067fafe commit 89a7346
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ attachCredential projectName: '$projectName',
def additionalOption

@Unroll
@IgnoreIf({ isWebLogic11() && isWindows() })
@IgnoreIf({ WebLogicHelper.isWebLogic11() && WebLogicHelper.isWindows() })
def 'CreateORUpdateDataSource - #caseId.ids #caseId.description, DS Name: #dataSourceName'() {
setup: 'Define the parameters for Procedure running'
Map runParams = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class DeleteDatasource extends WebLogicHelper {


@Unroll
@IgnoreIf({ isWebLogic11() && isWindows() })
@IgnoreIf({ WebLogicHelper.isWebLogic11() && WebLogicHelper.isWindows() })
def "Delete DataSource #tcId - #tcDescription"(){

setup: "Create DataSource" (CONFIG_NAME,
Expand Down Expand Up @@ -252,7 +252,7 @@ class DeleteDatasource extends WebLogicHelper {
}

@Unroll
@IgnoreIf({ isWebLogic11() && isWindows() })
@IgnoreIf({ WebLogicHelper.isWebLogic11() && WebLogicHelper.isWindows() })
def "Delete DataSource #testCaseId - #testCaseDescription"(){

when: 'Delete Data source #dataSource '
Expand All @@ -271,7 +271,7 @@ class DeleteDatasource extends WebLogicHelper {


@Unroll
@IgnoreIf({ isWebLogic11() && isWindows() })
@IgnoreIf({ WebLogicHelper.isWebLogic11() && WebLogicHelper.isWindows() })
def "Delete DataSource #testCaseId - #tcDescription"(){
setup: "Create DataSource" (CONFIG_NAME,
datasources.mysql,
Expand Down

0 comments on commit 89a7346

Please sign in to comment.