Index: tests/standalone/io/http_read_test.dart |
diff --git a/tests/standalone/io/http_read_test.dart b/tests/standalone/io/http_read_test.dart |
index fcc670fb93bdfb54c11d27793118822eb7ccf3cb..3a0c8495f0b86da090dbc3801a23c5727fcd175c 100644 |
--- a/tests/standalone/io/http_read_test.dart |
+++ b/tests/standalone/io/http_read_test.dart |
@@ -61,9 +61,9 @@ class TestServerCommand { |
TestServerCommand.stop() : _command = STOP; |
TestServerCommand.chunkedEncoding() : _command = CHUNKED_ENCODING; |
- bool get isStart() => _command == START; |
- bool get isStop() => _command == STOP; |
- bool get isChunkedEncoding() => _command == CHUNKED_ENCODING; |
+ bool get isStart => _command == START; |
+ bool get isStop => _command == STOP; |
+ bool get isChunkedEncoding => _command == CHUNKED_ENCODING; |
int _command; |
} |
@@ -78,11 +78,11 @@ class TestServerStatus { |
TestServerStatus.stopped() : _state = STOPPED; |
TestServerStatus.error() : _state = ERROR; |
- bool get isStarted() => _state == STARTED; |
- bool get isStopped() => _state == STOPPED; |
- bool get isError() => _state == ERROR; |
+ bool get isStarted => _state == STARTED; |
+ bool get isStopped => _state == STOPPED; |
+ bool get isError => _state == ERROR; |
- int get port() => _port; |
+ int get port => _port; |
int _state; |
int _port; |