Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
fix errmsg
Browse files Browse the repository at this point in the history
  • Loading branch information
sezruby committed Mar 11, 2021
1 parent 386aafc commit 2089026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/scala/com/microsoft/hyperspace/HyperspaceTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ class HyperspaceTest extends HyperspaceSuite {
// Test using a different thread.
Future(Hyperspace.getContext(newSession)).onComplete {
case Success(newCtx2) => fail("expected exception")
case Failure(e) => assert(e.getMessage.contains("Hyperspace does not support concurrent "
+ "threads using one Spark session"))
case Failure(e) => assert(e.getMessage.contains("Hyperspace does not support multiple " +
"threads sharing the same Spark session."))
}
}
}

0 comments on commit 2089026

Please sign in to comment.