Remove unused imports

This commit is contained in:
zrkn 2019-02-08 14:38:41 +03:00
parent fb4b17b3f0
commit 66ca6699ca
2 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,6 @@ mod tests {
use rlua::Lua;
use from_value;
use super::*;
#[test]
fn test_struct() {

View File

@ -1,6 +1,6 @@
use serde;
use rlua::{Context, Lua, Value, Table, String as LuaString};
use rlua::{Context, Value, Table, String as LuaString};
use to_value;
use error::{Error, Result};
@ -365,6 +365,7 @@ impl<'lua> serde::ser::SerializeStructVariant for SerializeStructVariant<'lua> {
#[cfg(test)]
mod tests {
use rlua::Lua;
use super::*;
#[test]