tests/test-fncache.t
changeset 45681 a736ab681b78
parent 44389 7a4e1d245f19
child 47453 377d8fc20e34
--- a/tests/test-fncache.t	Tue Oct 06 21:06:18 2020 -0700
+++ b/tests/test-fncache.t	Thu Oct 08 15:35:44 2020 -0700
@@ -238,7 +238,7 @@
   > def lockexception(orig, vfs, lockname, wait, releasefn, *args, **kwargs):
   >     def releasewrap():
   >         l.held = False # ensure __del__ is a noop
-  >         raise error.Abort("forced lock failure")
+  >         raise error.Abort(b"forced lock failure")
   >     l = orig(vfs, lockname, wait, releasewrap, *args, **kwargs)
   >     return l
   >