Use staging provisioning server even more

Merge from Widevine repo of http://go/wvgerrit/94745

I missed a few in http://go/wvgerrit/94067

Test: ran unit tests
Bug: 149622735
Change-Id: I2289adb05bbd41376528e09bbaa62430644a3e20
This commit is contained in:
Fred Gylys-Colwell
2020-02-26 14:45:39 -08:00
parent 0947bd185b
commit 1c8fac32d3
3 changed files with 6 additions and 5 deletions

View File

@@ -1875,7 +1875,8 @@ class WvCdmRequestLicenseTest : public WvCdmTestBase {
if (kHttpOk != http_status_code) {
LogResponseError(message, http_status_code);
}
EXPECT_EQ(kHttpOk, http_status_code) << message;
EXPECT_EQ(kHttpOk, http_status_code)
<< message << "\nwith server_url = " << server_url;
std::string drm_msg;
if (kHttpOk == http_status_code) {
@@ -2891,7 +2892,7 @@ TEST_F(WvCdmRequestLicenseTest,
cert_type, cert_authority, kDefaultCdmIdentifier,
kEmptyServiceCertificate, &key_msg_,
&provisioning_server_url));
EXPECT_EQ(provisioning_server_url, config_.provisioning_server());
EXPECT_EQ(provisioning_server_url, kDefaultProvisioningServerUrl);
std::string response =
GetCertRequestResponse(config_.provisioning_server());
EXPECT_NE(0, static_cast<int>(response.size()));