From 4befd2cfb0419a90efae391b1ecebb31c728bb6d Mon Sep 17 00:00:00 2001 From: Sam Gibson Date: Thu, 3 Dec 2015 14:10:25 +1100 Subject: [PATCH] Fixes typo in test literal --- tests/unit/style/attr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/style/attr.rs b/tests/unit/style/attr.rs index d114b65af74..7aca499beae 100644 --- a/tests/unit/style/attr.rs +++ b/tests/unit/style/attr.rs @@ -26,7 +26,7 @@ fn test_from_limited_i32_should_parse_a_uint_when_value_is_0_or_greater() { fn test_from_limited_i32_should_keep_parsed_value_when_not_an_int() { match AttrValue::from_limited_i32(DOMString::from("parsed-value"), 0) { AttrValue::Int(p, 0) => { - assert_eq!(p, DOMString::from("parsed_value")) + assert_eq!(p, DOMString::from("parsed-value")) }, _ => panic!("expected an successful parsing") }