We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e5923e commit c32f201Copy full SHA for c32f201
src/test/scala/ton/sdk/client/binding/ContextSpec.scala
@@ -12,16 +12,6 @@ import scala.util.Try
12
13
class ContextSpec extends AsyncFlatSpec {
14
15
- "Context" should "throw an exception if library is not loaded" in {
16
- try {
17
- implicit val effect: Context.Effect[Try] = Context.tryEffect
18
- Context(1).request(Client.Request.BuildInfo)
19
- fail("Should throw an exception")
20
- } catch {
21
- case _: UnsatisfiedLinkError => succeed
22
- }
23
24
-
25
"Sync Context" should "not allow usage if not open" in {
26
implicit val effect: Context.Effect[Try] = Context.tryEffect
27
Binding.loadNativeLibrary()
0 commit comments