diff options
author | Klement Sekera <ksekera@cisco.com> | 2017-07-18 10:33:06 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-07-18 20:52:47 +0000 |
commit | 60c1223acb21d9cc5925b14da3cb186155941624 (patch) | |
tree | 99acc91e881d9bb8baa49d4e8f3ad91a61035414 /test | |
parent | 57b5860f013953ce161d05302e05370db9cd6ee2 (diff) |
make test: improve console output messages
Remove the word derp and replace it with a proper, more gramatically
correct message.
Change-Id: I04fd44cc67dace1a31ca48fc8ce67b246162ba79
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/framework.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/framework.py b/test/framework.py index 3c9dd29af0c..fd493db36de 100644 --- a/test/framework.py +++ b/test/framework.py @@ -654,9 +654,9 @@ class VppTestCase(unittest.TestCase): time.sleep(timeout) after = time.time() if after - before > 2 * timeout: - cls.logger.error( - "time.sleep() derp! slept for %ss instead of ~%ss!" % ( - after - before, timeout)) + cls.logger.error("unexpected time.sleep() result - " + "slept for %ss instead of ~%ss!" % ( + after - before, timeout)) if hasattr(cls, 'logger'): cls.logger.debug( "Finished sleep (%s) - slept %ss (wanted %ss)" % ( |