Skip to content

Commit

Permalink
different names for tests with name '100 AD'
Browse files Browse the repository at this point in the history
  • Loading branch information
chorny committed Aug 23, 2010
1 parent d1dbde9 commit 53b8856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/402_format.t
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ is(DateTime::Format::Epoch::DotNet->format_datetime($dt), 24*3600*1e7, 'Epoch +

$dt = DateTime->new( year => 100, month => 1, day => 1 );

is($f->format_datetime($dt) - 31241376000000000, 0, '100 AD');
is(DateTime::Format::Epoch::DotNet->format_datetime($dt) - 31241376000000000, 0, '100 AD');
is($f->format_datetime($dt) - 31241376000000000, 0, '100 AD (object)');
is(DateTime::Format::Epoch::DotNet->format_datetime($dt) - 31241376000000000, 0, '100 AD (class)');

0 comments on commit 53b8856

Please sign in to comment.