diff -r 160bf92c7cdc -r 052cecabcb71 test/graph_test.cc --- a/test/graph_test.cc Mon Oct 20 12:36:02 2008 +0200 +++ b/test/graph_test.cc Sat Oct 18 13:15:00 2008 +0200 @@ -192,8 +192,8 @@ GRAPH_TYPEDEFS(Graph); Graph G(width, height); - check(G.width() == width, "Wrong row number"); - check(G.height() == height, "Wrong column number"); + check(G.width() == width, "Wrong column number"); + check(G.height() == height, "Wrong row number"); for (int i = 0; i < width; ++i) { for (int j = 0; j < height; ++j) {