Bug: https://bugs.launchpad.net/brz/+bug/1861398
Bug-Debian: https://bugs.debian.org/949918
Description: Disable tests that depend on changing filesystem encoding on Python 3.8

=== modified file 'breezy/tests/blackbox/test_locale.py'
--- old/breezy/tests/blackbox/test_locale.py	2018-12-18 21:09:11 +0000
+++ new/breezy/tests/blackbox/test_locale.py	2020-01-30 11:32:59 +0000
@@ -69,6 +69,9 @@
   Unicode \xc2\xb5 commit
 """, out)
 
+    @unittest.skipIf(
+        sys.version_info[:2] >= (3, 8),
+        "python >= 3.8 doesn't allow changing default filesystem encoding")
     def test_log_C(self):
         self.disable_missing_extensions_warning()
         out, err = self.run_log_quiet_long(
@@ -90,6 +93,9 @@
   Unicode ? commit
 """, out)
 
+    @unittest.skipIf(
+        sys.version_info[:2] >= (3, 8),
+        "python >= 3.8 doesn't allow changing default filesystem encoding")
     def test_log_BOGUS(self):
         out, err = self.run_log_quiet_long(
             ['tree'],

