Revision: 3f8540c60b6f
Branch: default
Author: Robot Framework Developers ([email protected])
Date: Thu May 30 02:51:15 2013
Log: fixed utests on python 2.5
http://code.google.com/p/robotframework/source/detail?r=3f8540c60b6f
Modified:
/utest/api/test_run_and_rebot.py
=======================================
--- /utest/api/test_run_and_rebot.py Thu May 30 02:37:46 2013
+++ /utest/api/test_run_and_rebot.py Thu May 30 02:51:15 2013
@@ -16,7 +16,8 @@
def run_without_outputs(*args, **kwargs):
- return run(*args, output='NONE', report='NoNe', log='none', **kwargs)
+ kwargs.update(output='NONE', log='NoNe', report='none')
+ return run(*args, **kwargs)
class StreamWithOnlyWriteAndFlush(object):
--
---
You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.