From e8bba051c91bd2394911e271efff9bbb222a79c8 Mon Sep 17 00:00:00 2001 From: Adam Meehan Date: Tue, 22 Jul 2008 08:29:11 +1000 Subject: [PATCH] fixed spec with microseconds --- spec/formats_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/formats_spec.rb b/spec/formats_spec.rb index 83b9f85..d0c058e 100644 --- a/spec/formats_spec.rb +++ b/spec/formats_spec.rb @@ -69,7 +69,7 @@ describe ValidatesTimeliness::Formats do end it "should generate proc which outputs time array with microseconds" do - generate_proc('hh:nn:ss.u').call('01', '02', '03', '99').should == [0,0,0,1,2,3,99] + generate_proc('hh:nn:ss.u').call('01', '02', '03', '99').should == [0,0,0,1,2,3,990000] end end