Skip to content

Commit

Permalink
Minor comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Dec 21, 2021
1 parent c66cb3b commit 64bb66d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class DataflowMathExtensionTest extends Specification {
Channel.from("hello","hi","hey").max { it.size() } .val == "hello"
Channel.from("hello","hi","hey").max { a,b -> a.size()<=>b.size() } .val == "hello"
Channel.from("hello","hi","hey").max { a,b -> a.size()<=>b.size() } .val == "hello"
// this may fail randomly - the cause should be investigated
Channel.from("hello","hi","hey").max (makeComparator {{ a,b -> a.size()<=>b.size() }}) .val == "hello"

}
Expand Down

0 comments on commit 64bb66d

Please sign in to comment.