From 40993623d72f25c2534d136f8fa116a9778624b8 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 7 Oct 2015 07:58:34 -0400 Subject: [PATCH] Test: Fixed broken test --- test/iso8601d.t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/iso8601d.t.cpp b/test/iso8601d.t.cpp index c1f9bcb01..0ab743d5c 100644 --- a/test/iso8601d.t.cpp +++ b/test/iso8601d.t.cpp @@ -444,7 +444,7 @@ int main (int argc, char** argv) t.is (fromString10.year (), 2010, "ctor (std::string) -> Y"); t.is (fromString10.hour (), 12, "ctor (std::string) -> h"); t.is (fromString10.minute (), 34, "ctor (std::string) -> N"); - t.is (fromString1.second (), 56, "ctor (std::string) -> S"); + t.is (fromString10.second (), 56, "ctor (std::string) -> S"); // Day of year t.is (ISO8601d ("1/1/2011", "m/d/Y").dayOfYear (), 1, "dayOfYear (1/1/2011) -> 1");