stas 2004/07/12 12:03:57
Modified: perl-framework/Apache-Test/lib/Apache TestUtil.pm
Log:
restore the order the debug tracing is done, expected followed by actual
Revision Changes Path
1.41 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestUtil.pm
Index: TestUtil.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestUtil.pm,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -u -r1.40 -r1.41
--- TestUtil.pm 10 Jun 2004 13:14:36 -0000 1.40
+++ TestUtil.pm 12 Jul 2004 19:03:57 -0000 1.41
@@ -123,8 +123,8 @@
}
t_debug("testing : " . pop) if @_ == 3;
- t_debug("received: " . struct_as_string(0, $received));
t_debug("expected: " . struct_as_string(0, $expected));
+ t_debug("received: " . struct_as_string(0, $received));
return t_is_equal($received, $expected);
}