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 rlua::Lua;
use from_value; use from_value;
use super::*;
#[test] #[test]
fn test_struct() { fn test_struct() {

View File

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