Skip to content

Commit

Permalink
[FLINK-35420][hadoop-compatibility][test] Workaround some strange sca…
Browse files Browse the repository at this point in the history
…la 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()
  • Loading branch information
pnowojski committed May 23, 2024
1 parent 77111f7 commit 9ccfb65
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ class WordCountMapredITCase extends JavaProgramTestBase {
def checkOperatingSystem() {
// FLINK-5164 - see https://wiki.apache.org/hadoop/WindowsProblems
assumeThat(OperatingSystem.isWindows)
.as("This test can't run successfully on Windows.")
.isFalse()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class WordCountMapreduceITCase extends JavaProgramTestBase {
def checkOperatingSystem() {
// FLINK-5164 - see https://wiki.apache.org/hadoop/WindowsProblems
assumeThat(OperatingSystem.isWindows)
.as("This test can't run successfully on Windows.")
.isFalse()
}

Expand Down

0 comments on commit 9ccfb65

Please sign in to comment.