Skip to content

Commit

Permalink
test: ignore ChangeCaseSpec in tr_TR locale
Browse files Browse the repository at this point in the history
__changeCase uses java-default locale, so the test does not support
tr_TR locale.


See #5723
  • Loading branch information
vlsi committed May 18, 2023
1 parent 75754ce commit 7c16034
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@ import org.apache.jmeter.samplers.SampleResult
import org.apache.jmeter.threads.JMeterContextService
import org.apache.jmeter.threads.JMeterVariables

import spock.lang.IgnoreIf
import spock.lang.Specification
import spock.lang.Unroll

@Unroll
class ChangeCaseSpec extends Specification {

// See https://github.com/apache/jmeter/issues/5723
@IgnoreIf({ 'i'.toUpperCase() != 'I' || 'I'.toLowerCase() != 'i' })
def "convert '#input' using mode #mode to '#output'"() {
given:
def changeCase = new ChangeCase()
Expand Down

0 comments on commit 7c16034

Please sign in to comment.