File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
doc/userguide/src/ExtendingRobotFramework Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1394,13 +1394,13 @@ case-insensitive.
1394
1394
+-------------+---------------+------------+----------------------------------------------------------------+--------------------------------------+
1395
1395
| Enum _ | | | The specified type must be an enumeration (a subclass of | .. sourcecode:: python |
1396
1396
| | | | Enum _) and arguments themselves must match its members. | |
1397
- | | | | Starting from RF 3.2.2, matching members is case-, underscore- | class Color(Enum): |
1398
- | | | | and whitespace-insensitive. | RED = 1 |
1399
- | | | | | GREEN = 2 |
1400
- | | | | | DARKGREEN = 3 |
1397
+ | | | | | class Color(Enum): |
1398
+ | | | | Starting from RF 3.2.2, matching members is case-, space- | RED = 1 |
1399
+ | | | | and underscore-insensitive. | GREEN = 2 |
1400
+ | | | | | DARK_GREEN = 3 |
1401
1401
| | | | | |
1402
1402
| | | | | | `GREEN ` (Color.GREEN) |
1403
- | | | | | | `Dark Green ` (Color.DARKGREEN) |
1403
+ | | | | | | `Dark Green ` (Color.DARK_GREEN) |
1404
1404
+-------------+---------------+------------+----------------------------------------------------------------+--------------------------------------+
1405
1405
| NoneType _ | | | String `NONE ` (case-insensitively) is converted to `None ` | | `None ` |
1406
1406
| | | | object, other values are passed as-is. Mainly relevant when | |
You can’t perform that action at this time.
0 commit comments