We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75754ce commit 7c16034Copy full SHA for 7c16034
src/functions/src/test/groovy/org/apache/jmeter/functions/ChangeCaseSpec.groovy
@@ -22,12 +22,15 @@ import org.apache.jmeter.samplers.SampleResult
22
import org.apache.jmeter.threads.JMeterContextService
23
import org.apache.jmeter.threads.JMeterVariables
24
25
+import spock.lang.IgnoreIf
26
import spock.lang.Specification
27
import spock.lang.Unroll
28
29
@Unroll
30
class ChangeCaseSpec extends Specification {
31
32
+ // See https://github.com/apache/jmeter/issues/5723
33
+ @IgnoreIf({ 'i'.toUpperCase() != 'I' || 'I'.toLowerCase() != 'i' })
34
def "convert '#input' using mode #mode to '#output'"() {
35
given:
36
def changeCase = new ChangeCase()
0 commit comments