Revision: 3528b74ea465
Author: Pekka Klärck
Date: Thu Nov 10 04:06:22 2011
Log: User Guide: Fixed example
Update issue 992
Status: Done
Owner: pekka.klarck
Fixed the example mentioned in 2). Discussion about better examples can be
continued in issue 49.
http://code.google.com/p/robotframework/source/detail?r=3528b74ea465
Modified:
/doc/userguide/RobotFrameworkUserGuide.html
/doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.txt
=======================================
--- /doc/userguide/RobotFrameworkUserGuide.html Thu Nov 10 00:57:54 2011
+++ /doc/userguide/RobotFrameworkUserGuide.html Thu Nov 10 04:06:22 2011
@@ -11889,7 +11889,7 @@
<td>Return Multiple Values</td>
</tr>
<tr><td>Should Be Equal</td>
-<td>${v1} ${v2}</td>
+<td>${s1} ${s2}</td>
<td>a list</td>
<td> </td>
</tr>
@@ -14465,7 +14465,7 @@
<div class="footer">
<hr class="footer" />
<p>Generated by <a class="reference external"
href="http://docutils.sourceforge.net/rst.html">reStructuredText</a>.
Syntax highlighting by <a class="reference external"
href="http://pygments.org/">Pygments</a>.</p>
-<p>Generated on: 2011-11-10 08:57 UTC.
+<p>Generated on: 2011-11-10 12:02 UTC.
</p>
</div>
=======================================
--- /doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.txt
Thu Nov 10 00:57:39 2011
+++ /doc/userguide/src/ExtendingRobotFramework/CreatingTestLibraries.txt
Thu Nov 10 04:06:22 2011
@@ -1155,7 +1155,7 @@
Should Be Equal @{list}[0] first value
Should Be Equal @{list}[1] second value
${s1} ${s2} @{li} = Return
Multiple Values
- Should Be Equal ${v1} ${v2} a list
+ Should Be Equal ${s1} ${s2} a list
Should Be Equal @{li}[0] @{li}[1] of strings
================ ================== ==================
=======================