summaryrefslogtreecommitdiff
path: root/test/haxe/src/Arguments.hx
diff options
context:
space:
mode:
Diffstat (limited to 'test/haxe/src/Arguments.hx')
-rw-r--r--test/haxe/src/Arguments.hx3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/haxe/src/Arguments.hx b/test/haxe/src/Arguments.hx
index 132f2080b..cae91dfda 100644
--- a/test/haxe/src/Arguments.hx
+++ b/test/haxe/src/Arguments.hx
@@ -32,6 +32,7 @@ using StringTools;
enum ProtocolType {
binary;
json;
+ compact;
}
enum EndpointTransport {
@@ -190,7 +191,7 @@ class Arguments
if( arg == "binary") {
protocol = binary;
} else if( arg == "compact") {
- throw "Compact protocol not supported yet";
+ protocol = compact;
} else if( arg == "json") {
protocol = json;
} else {