Author: faridz
Date: Wed Oct  3 10:08:49 2007
New Revision: 581659

URL: http://svn.apache.org/viewvc?rev=581659&view=rev
Log:
2007-10-03 Farid Zaripov <[EMAIL PROTECTED]>

        * 23.vector.bool.stdcxx-235.cpp (main): Corrected the
        lines which are testing the operator!=.

Modified:
    incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp

Modified: incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp?rev=581659&r1=581658&r2=581659&view=diff
==============================================================================
--- incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp 
(original)
+++ incubator/stdcxx/trunk/tests/regress/23.vector.bool.stdcxx-235.cpp Wed Oct  
3 10:08:49 2007
@@ -42,8 +42,8 @@
     assert (cbegin == begin);
     assert (begin  == cbegin);
 
-    assert (!(cbegin == begin));
-    assert (!(begin  == cbegin));
+    assert (!(cbegin != begin));
+    assert (!(begin  != cbegin));
 
     assert (cbegin <= begin);
     assert (begin  <= cbegin);


Reply via email to