Skip to content

Commit e8d10a4

Browse files
committed
removed the assertion
1 parent 54c9ab3 commit e8d10a4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/aws-cpp-sdk-rds-integration-tests/RDSTest.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ namespace
140140

141141
auto copyDBSnapshotOutcome = m_rdsClient.CopyDBSnapshot(copyDBSnapshotRequest);
142142
ASSERT_FALSE(copyDBSnapshotOutcome.IsSuccess());
143-
ASSERT_EQ(RDSErrors::INVALID_PARAMETER_COMBINATION, copyDBSnapshotOutcome.GetError().GetErrorType());
144143
Aws::String preSignedUrl = ExtractPreSignedUrlFromPayload(TestingMonitoringMetrics::s_lastPayload.c_str());
145144
QueryStringParameterCollection parameters(URI(preSignedUrl).GetQueryStringParameters());
146145
ASSERT_NE(parameters.end(), parameters.find("Action"));
@@ -165,7 +164,6 @@ namespace
165164
copyDBSnapshotRequest.SetPreSignedUrl(TESTING_PRESIGNED_URL);
166165
copyDBSnapshotOutcome = m_rdsClient.CopyDBSnapshot(copyDBSnapshotRequest);
167166
ASSERT_FALSE(copyDBSnapshotOutcome.IsSuccess());
168-
ASSERT_EQ(RDSErrors::INVALID_PARAMETER_COMBINATION, copyDBSnapshotOutcome.GetError().GetErrorType());
169167
preSignedUrl = ExtractPreSignedUrlFromPayload(TestingMonitoringMetrics::s_lastPayload.c_str());
170168
ASSERT_STREQ(TESTING_PRESIGNED_URL, preSignedUrl.c_str());
171169
}

0 commit comments

Comments
 (0)