Author: sebor
Date: Fri Dec 1 15:10:32 2006
New Revision: 481441
URL: http://svn.apache.org/viewvc?view=rev&rev=481441
Log:
2006-12-01 Martin Sebor <[EMAIL PROTECTED]>
* 21.string.find.first.not.of.cpp (test_find_first_not_of): Inverted
the logic of a controlling expression in an unconditional assertion.
Modified:
incubator/stdcxx/trunk/tests/strings/21.string.find.first.not.of.cpp
Modified: incubator/stdcxx/trunk/tests/strings/21.string.find.first.not.of.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/strings/21.string.find.first.not.of.cpp?view=diff&rev=481441&r1=481440&r2=481441
==============================================================================
--- incubator/stdcxx/trunk/tests/strings/21.string.find.first.not.of.cpp
(original)
+++ incubator/stdcxx/trunk/tests/strings/21.string.find.first.not.of.cpp Fri
Dec 1 15:10:32 2006
@@ -7,22 +7,21 @@
*
***************************************************************************
*
- * Copyright 2006 The Apache Software Foundation or its licensors,
- * as applicable.
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at
*
- * Copyright 2006 Rogue Wave Software.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied. See the License for the specific language governing
+ * permissions and limitations under the License.
*
**************************************************************************/
@@ -694,7 +693,7 @@
break;
default:
- RW_ASSERT ("test logic error: unknown find_first_not_of overload");
+ RW_ASSERT (!"logic error: unknown find_first_not_of overload");
return;
}