regrtest: the 'bad' and 'environment_changed' sets of tests don't intersect anymore
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index c97ec52..6708876 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -798,10 +798,8 @@
         for time, test in test_times[:10]:
             print("%s: %.1fs" % (test, time))
     if bad:
-        bad = sorted(set(bad) - set(environment_changed))
-        if bad:
-            print(count(len(bad), "test"), "failed:")
-            printlist(bad)
+        print(count(len(bad), "test"), "failed:")
+        printlist(bad)
     if environment_changed:
         print("{} altered the execution environment:".format(
                  count(len(environment_changed), "test")))