Fix typo in test runner
authorFrancis Ricci <francisjricci@gmail.com>
Wed, 20 Jul 2016 19:37:31 +0000 (19:37 +0000)
committerFrancis Ricci <francisjricci@gmail.com>
Wed, 20 Jul 2016 19:37:31 +0000 (19:37 +0000)
llvm-svn: 276166

lldb/packages/Python/lldbsuite/test/decorators.py

index 93e4827..6613b25 100644 (file)
@@ -486,7 +486,7 @@ def skipUnlessPlatform(oslist):
     # This decorator cannot be ported to `skipIf` yet because it is used on entire
     # classes, which `skipIf` explicitly forbids.
     return unittest2.skipUnless(lldbplatformutil.getPlatform() in oslist,
-                                "requires on of %s" % (", ".join(oslist)))
+                                "requires one of %s" % (", ".join(oslist)))
 
 def skipIfTargetAndroid(api_levels=None, archs=None):
     """Decorator to skip tests when the target is Android.