summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-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
~~~