summaryrefslogtreecommitdiff
path: root/serde_dhall/tests/traits.rs
diff options
context:
space:
mode:
Diffstat (limited to 'serde_dhall/tests/traits.rs')
-rw-r--r--serde_dhall/tests/traits.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/serde_dhall/tests/traits.rs b/serde_dhall/tests/traits.rs
index 15a91ed..b2fe6e5 100644
--- a/serde_dhall/tests/traits.rs
+++ b/serde_dhall/tests/traits.rs
@@ -1,8 +1,8 @@
-use serde_dhall::{from_str, StaticType, Value};
+use serde_dhall::{from_str, StaticType, Type};
#[test]
fn test_static_type() {
- fn parse(s: &str) -> Value {
+ fn parse(s: &str) -> Type {
from_str(s).unwrap()
}