summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-05-29 20:51:41 +0300
committerLars Wirzenius <liw@liw.fi>2021-05-29 20:51:41 +0300
commitfc07876486f75b41a17ce8c692c28f79a510e1ac (patch)
tree35de753c5961a10b298d3abbd14e3323dbf7764b
parentc6d32f1f9d15c531b7160d115d7bf47d2016a859 (diff)
downloadoso-work-sample-fc07876486f75b41a17ce8c692c28f79a510e1ac.tar.gz
refactor: combine individual scenarios for two-element lists
Sponsored-by: author
-rw-r--r--README.md13
1 files changed, 1 insertions, 12 deletions
diff --git a/README.md b/README.md
index a1968b8..60d9615 100644
--- a/README.md
+++ b/README.md
@@ -183,26 +183,15 @@ These scenarios verify that the server finds the maximum integer in a
list of two. There is a separate scenario for every possible list of
two elements.
-### List of two identical numbers
-
~~~scenario
given server
+
when I run max-client.py 5 5
then answer is 5
-~~~
-### List of two numbers in order
-
-~~~scenario
-given server
when I run max-client.py 5 6
then answer is 6
-~~~
-
-### List of two numbers in wrong order
-~~~scenario
-given server
when I run max-client.py 6 5
then answer is 6
~~~