Skip to content

Commit 0bd23db

Browse files
committed
Fix use places.
1 parent 5b1cfbe commit 0bd23db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/actor.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use fp_rust::{
66
sync::{CountDownLatch},
77
handler::{Handler,HandlerThread},
88
};
9-
use rlua::{Lua,Error,Error::RuntimeError,Function,FromLuaMulti,ToLuaMulti,Variadic};
9+
use rlua::{Lua,Error,Error::RuntimeError,Function,FromLuaMulti,ToLuaMulti};
1010
use message::LuaMessage;
1111

1212
#[derive(Clone)]
@@ -272,6 +272,8 @@ impl Actor {
272272
#[test]
273273
fn test_actor_new() {
274274

275+
use rlua::{Variadic};
276+
275277
fn test_actor(act: Actor) {
276278
let _ = act.exec(r#"
277279
i = 1

0 commit comments

Comments
 (0)