brizental pushed to branch tor-browser-152.0a1-16.0-2 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • testing/tor/test_circuit_isolation.py
    ... ... @@ -80,17 +80,3 @@ class TestCircuitIsolation(MarionetteTestCase, TorBrowserMixin):
    80 80
                 len(unique_ips),
    
    81 81
                 "Some of the IP addresses we got are not unique.",
    
    82 82
             )
    83
    -
    
    84
    -        duplicates = set([
    
    85
    -            self.extract_from_header("https://test-01.torproject.org"),
    
    86
    -            self.extract_from_header("https://test-02.torproject.org"),
    
    87
    -            self.extract_from_header("https://test.torproject.org"),
    
    88
    -        ])
    
    89
    -        self.logger.info(
    
    90
    -            f"Found the following IP addresses, when checking for duplicates: {duplicates}"
    
    91
    -        )
    
    92
    -        self.assertEqual(
    
    93
    -            len(duplicates),
    
    94
    -            1,
    
    95
    -            "IPs that were expected to be equal are different, we might be over isolating!",
    
    96
    -        )