Skip to content

Commit 3e7ed8c

Browse files
committed
Address deprecation warning after specs upgrade
1 parent a30b9c4 commit 3e7ed8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

geocss/src/test/scala/org/geoscript/geocss/TokenTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ class TokenTest extends FunSuite with ShouldMatchers {
2727

2828
test("'and' filter is correctly generated for larger And's") {
2929
val expected =
30-
for {
30+
for {
3131
f <- expr1.filterOpt
3232
g <- expr2.filterOpt
3333
} yield and(f, g)
3434

35-
expectResult(expected) {
35+
assertResult(expected) {
3636
And(List(expr1, expr2)).filterOpt
3737
}
3838
}

0 commit comments

Comments
 (0)