Skip to content

Commit f87e62f

Browse files
PaulBrandUWVlucagiove
authored andcommitted
Fix triple asterisk in documentation
1 parent fac8933 commit f87e62f

File tree

3 files changed

+72
-44
lines changed

3 files changed

+72
-44
lines changed

doc/RequestsLibrary.html

Lines changed: 66 additions & 38 deletions
Large diffs are not rendered by default.

src/RequestsLibrary/RequestsKeywords.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def status_should_be(self, expected_status, response=None, msg=None):
9494
9595
For example when you have a nested keyword that is used for both OK and ERROR responses:
9696
97-
| *** Test Cases ***
97+
| ***** Test Cases *****
9898
|
9999
| Test Get Request And Make Sure Is A 404 Response
100100
| ${resp}= GET Custom Keyword That Returns OK or ERROR Response case=notfound
@@ -106,7 +106,7 @@ def status_should_be(self, expected_status, response=None, msg=None):
106106
| Status Should Be 200 ${resp}
107107
| Should Be Equal As Strings OK ${resp.reason}
108108
|
109-
| *** Keywords ***
109+
| ***** Keywords *****
110110
|
111111
| GET Custom Keyword That Returns OK or ERROR Response
112112
| [Arguments] $case

src/RequestsLibrary/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ class RequestsLibrary(RequestsOnSessionKeywords):
2626
2727
The quickest way to start is using the requests keywords and urls see below examples:
2828
29-
| *** Settings ***
29+
| ***** Settings *****
3030
| Library RequestsLibrary
3131
|
32-
| *** Test Cases ***
32+
| ***** Test Cases *****
3333
| Quick Get Request Test
3434
| ${response}= GET https://www.google.com
3535
|
@@ -47,13 +47,13 @@ class RequestsLibrary(RequestsOnSessionKeywords):
4747
each requests.
4848
Below some more advanced examples:
4949
50-
| *** Settings ***
50+
| ***** Settings *****
5151
| Library Collections
5252
| Library RequestsLibrary
5353
|
5454
| Suite Setup Create Session jsonplaceholder https://jsonplaceholder.typicode.com
5555
|
56-
| *** Test Cases ***
56+
| ***** Test Cases *****
5757
|
5858
| Get Request Test
5959
| Create Session google http://www.google.com

0 commit comments

Comments
 (0)