Skip to content

Commit 9ccfb65

Browse files
committed
[FLINK-35420][hadoop-compatibility][test] Workaround some strange scala compilation issue
Without this fix a couple of people did experience compilation error in the IntelliJ: WordCountMapredITCase.scala:42:8 value isFalse is not a member of ?0 possible cause: maybe a semicolon is missing before `value isFalse'? .isFalse()
1 parent 77111f7 commit 9ccfb65

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

flink-connectors/flink-hadoop-compatibility/src/test/scala/org/apache/flink/api/hadoopcompatibility/scala/WordCountMapredITCase.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ class WordCountMapredITCase extends JavaProgramTestBase {
3838
def checkOperatingSystem() {
3939
// FLINK-5164 - see https://wiki.apache.org/hadoop/WindowsProblems
4040
assumeThat(OperatingSystem.isWindows)
41-
.as("This test can't run successfully on Windows.")
4241
.isFalse()
4342
}
4443

flink-connectors/flink-hadoop-compatibility/src/test/scala/org/apache/flink/api/hadoopcompatibility/scala/WordCountMapreduceITCase.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class WordCountMapreduceITCase extends JavaProgramTestBase {
4040
def checkOperatingSystem() {
4141
// FLINK-5164 - see https://wiki.apache.org/hadoop/WindowsProblems
4242
assumeThat(OperatingSystem.isWindows)
43-
.as("This test can't run successfully on Windows.")
4443
.isFalse()
4544
}
4645

0 commit comments

Comments
 (0)