last-svn-commit-127-g25eb4fe Fix test core/other/box_runend_piter.

* tests/core/other/box_runend_piter.cc: Fix assertion. --- milena/ChangeLog | 6 ++++++ milena/tests/core/other/box_runend_piter.cc | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index 0806c6b..74bb42d 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,3 +1,9 @@ +2010-04-09 Roland Levillain <roland@lrde.epita.fr> + + Fix test core/other/box_runend_piter. + + * tests/core/other/box_runend_piter.cc: Fix assertion. + 2010-03-30 Roland Levillain <roland@lrde.epita.fr> Do not install low-quality HTML documentation. diff --git a/milena/tests/core/other/box_runend_piter.cc b/milena/tests/core/other/box_runend_piter.cc index fe7cb43..7af994f 100644 --- a/milena/tests/core/other/box_runend_piter.cc +++ b/milena/tests/core/other/box_runend_piter.cc @@ -35,7 +35,7 @@ int main() box_runend_piter<point2d> p(b); unsigned i = 2; for_all(p) - mln_assertion(p == point2d(i, 2)); + mln_assertion(p == point2d(i--, 2)); mln_assertion(p.run_length() == 3); } -- 1.5.6.5
participants (1)
-
Roland Levillain