From eec558295aaca6f493a2c488008dfd2fd3670f49 Mon Sep 17 00:00:00 2001 From: Na Lee Ha Date: Wed, 4 Sep 2024 16:58:46 +0100 Subject: [PATCH] #1434 clean up comments --- .../scala/org/finos/vuu/wsapi/helpers/TestVuuClient.scala | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vuu/src/test/scala/org/finos/vuu/wsapi/helpers/TestVuuClient.scala b/vuu/src/test/scala/org/finos/vuu/wsapi/helpers/TestVuuClient.scala index a5b95efb9..fbbb4f3b1 100644 --- a/vuu/src/test/scala/org/finos/vuu/wsapi/helpers/TestVuuClient.scala +++ b/vuu/src/test/scala/org/finos/vuu/wsapi/helpers/TestVuuClient.scala @@ -73,13 +73,8 @@ class TestVuuClient(vsClient: ViewServerClient) extends StrictLogging{ def login(token: String, user: String): Option[String] = { send("not used", "not used", LoginRequest(token, user)) - - //capture messages rather than dismissing, - how to cap size - // need to match on request id to ensure correct response? awaitForMsg[LoginSuccess] .map(x => x.sessionId) - //todo handle no response - //todo what to do if LoginFailure } private def isExpectedBodyType[T <: AnyRef](t: ClassTag[T], msg: ViewServerMessage) = {