remove tests that are specific to fingerprinting v1

This commit is contained in:
bridiver
2020-06-03 13:44:53 -07:00
parent 0d2a1a216d
commit d95d5cb707
@@ -398,24 +398,6 @@ IN_PROC_BROWSER_TEST_F(BraveContentSettingsAgentImplBrowserTest,
EXPECT_TRUE(
ExecuteScriptAndExtractInt(contents(), kGetImageDataScript, &hash));
EXPECT_EQ(kExpectedImageDataHashFarblingOff, hash);
// Farbling should be default if 3rd-party fingerprinting is blocked
// via content settings and kBraveFingerprintingV2 is disabled
BlockThirdPartyFingerprinting();
NavigateToPageWithIframe();
hash = -1;
EXPECT_TRUE(
ExecuteScriptAndExtractInt(contents(), kGetImageDataScript, &hash));
EXPECT_EQ(kExpectedImageDataHashFarblingBalanced, hash);
// Farbling should be default if fingerprinting is blocked via
// content settings and kBraveFingerprintingV2 is disabled
BlockFingerprinting();
NavigateToPageWithIframe();
hash = -1;
EXPECT_TRUE(
ExecuteScriptAndExtractInt(contents(), kGetImageDataScript, &hash));
EXPECT_EQ(kExpectedImageDataHashFarblingBalanced, hash);
}
class BraveContentSettingsAgentImplV2BrowserTest