Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit 6b81634

Browse files
committed
Fix Robot tests
1 parent d74f5b4 commit 6b81634

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/stub_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def give_command(self, command_input):
2323
self.inputs.append(command_input)
2424

2525
# pylint: disable=unused-argument
26-
def input_int(self, command_input):
26+
def input_check_int(self, command_input):
2727
integer = self.inputs.pop(0)
2828
if integer.isnumeric():
2929
return int(integer)

src/tests/reference.robot

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Store References In Database
2929
Input Quit Command
3030
Run Application
3131
Output Should Contain 1: Philip Pullman | Kultainen Kompassi | Tammi (1996)
32-
Output Should Contain 2: George R. R. Martin | Tuf Voyaging | Meisha Merlin (2003)
32+
Output Should Contain 3: George R. R. Martin | Tuf Voyaging | Meisha Merlin (2003)
3333

3434
Delete References In Database
3535
Input New Reference Command
@@ -57,4 +57,3 @@ Export References Into Bibtex File
5757
*** Keywords ***
5858
Clear Database
5959
Format Database
60-

0 commit comments

Comments
 (0)