Index: test/regression/115.stmt |
diff --git a/test/regression/115.stmt b/test/regression/115.stmt |
index 8843ed064205a470d4c013cae319c5ebab5c6b8d..8afac52b47c6e70a9e9110e7110fe53934996bd7 100644 |
--- a/test/regression/115.stmt |
+++ b/test/regression/115.stmt |
@@ -24,6 +24,6 @@ assert( |
// Indexing send-sets have an argument for the index. |
(selector.isIndexSet ? 1 : 0) + |
// Non-increment send-sets have one more argument. |
- (ast.Operator.INCREMENT_OPERATORS.contains(op.source) ? |
- 0 : |
- 1) == node.argumentCount()); |
+ (ast.Operator.INCREMENT_OPERATORS.contains(op.source) |
+ ? 0 |
+ : 1) == node.argumentCount()); |