Author: laukpe
Date: Sun Sep 21 14:50:18 2008
New Revision: 777

Added:
   trunk/proto/remote/python/robotremoteserver.temp
- copied unchanged from r774, /trunk/proto/remote/python/RobotRemoteServer.py
Removed:
   trunk/proto/remote/python/RobotRemoteServer.py
Modified:
   trunk/proto/remote/python/examplelibrary.py

Log:
renaming, part 1)

Modified: trunk/proto/remote/python/examplelibrary.py
==============================================================================
--- trunk/proto/remote/python/examplelibrary.py (original)
+++ trunk/proto/remote/python/examplelibrary.py Sun Sep 21 14:50:18 2008
@@ -94,13 +94,13 @@
         self._should_be_equal(arg, [])

     def list_containing_none_as_argument(self, arg):
-        self._should_be_equal(arg, ['None'])
+        self._should_be_equal(arg, [''])

     def list_containing_objects_as_argument(self, arg):
         self._should_be_equal(arg, ['<MyObject1>', '<MyObject2>'])

     def nested_list_as_argument(self, arg):
-        exp = [ [True, False], [[1, 'None', '<MyObject>', {}]] ]
+        exp = [ [True, False], [[1, '', '<MyObject>', {}]] ]
         self._should_be_equal(arg, exp)

     def dictionary_as_argument(self, arg):
@@ -113,7 +113,7 @@
         self._should_be_equal(arg, {'1': 2, 'False': True})

     def dictionary_containing_none_as_argument(self, arg):
-        self._should_be_equal(arg, {'As value': 'None', 'None': 'As key'})
+        self._should_be_equal(arg, {'As value': '', '': 'As key'})

     def dictionary_containing_objects_as_argument(self, arg):
self._should_be_equal(arg, {'As value': '<MyObject1>', '<MyObject2>': 'As key'})

Reply via email to