summaryrefslogtreecommitdiff
path: root/src/Parser/Statement.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2024-09-28 19:53:42 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2024-09-28 20:08:00 +0200
commit9b947899eea2852e9855fa30595e7a3176b70875 (patch)
tree5af0eb8659c9c6694126e2ad5b30a21b6458dd7c /src/Parser/Statement.hs
parentf91ff15b9551cd0d325dbd03f066d48dfd70ed25 (diff)
Optional arguments and "flush" as a builtin
Diffstat (limited to 'src/Parser/Statement.hs')
-rw-r--r--src/Parser/Statement.hs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Parser/Statement.hs b/src/Parser/Statement.hs
index 67ffd76..c7cdf5a 100644
--- a/src/Parser/Statement.hs
+++ b/src/Parser/Statement.hs
@@ -320,11 +320,6 @@ testExpect = command "expect" $ Expect
<*> param "capture"
<*> innerBlock
-testFlush :: TestParser [TestStep]
-testFlush = command "flush" $ Flush
- <$> paramOrContext "from"
- <*> param ""
-
testDisconnectNode :: TestParser [TestStep]
testDisconnectNode = command "disconnect_node" $ DisconnectNode
<$> paramOrContext ""
@@ -372,7 +367,6 @@ testStep = choice
, testNode
, testSpawn
, testExpect
- , testFlush
, testDisconnectNode
, testDisconnectNodes
, testDisconnectUpstream