We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb020e1 commit e85c216Copy full SHA for e85c216
tests/cpp-tests/Classes/UnitTest/UnitTest.cpp
@@ -1200,12 +1200,12 @@ void ParseUriTest::onEnter()
1200
u = u;
1201
EXPECT_TRUE(u.isValid());
1202
}
1203
-
1204
- // Self move assignment
1205
- {
1206
- u = std::move(u);
1207
- EXPECT_TRUE(u.isValid());
1208
- }
+// STEVE REMOVED
+// // Self move assignment
+// {
+// u = std::move(u);
+// EXPECT_TRUE(u.isValid());
+// }
1209
1210
// move constructor
1211
{
@@ -1224,8 +1224,7 @@ void ParseUriTest::onEnter()
1224
1225
// copy assign operator
1226
1227
- Uri v;
1228
- v = std::move(u);
+ Uri v = std::move(u);
1229
EXPECT_FALSE(u.isValid());
1230
EXPECT_TRUE(v.isValid());
1231
EXPECT_EQ("ws", v.getScheme());
0 commit comments