Ver Fonte

fix error boundary test

Evan Almloff há 1 ano atrás
pai
commit
4b4dcbed6a
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      packages/core/tests/error_boundary.rs

+ 2 - 2
packages/core/tests/error_boundary.rs

@@ -24,9 +24,9 @@ fn NoneChild(_cx: Scope) -> Element {
 }
 
 fn ThrowChild(cx: Scope) -> Element {
-    cx.throw(std::io::Error::new(std::io::ErrorKind::AddrInUse, "asd"))?;
+    Err(std::io::Error::new(std::io::ErrorKind::AddrInUse, "asd")).throw()?;
 
-    let _g: i32 = "123123".parse().throw(cx)?;
+    let _g: i32 = "123123".parse().throw()?;
 
     cx.render(rsx! {
         div {}