| Index: tests/standalone/io/http_basic_test.dart
|
| diff --git a/tests/standalone/io/http_basic_test.dart b/tests/standalone/io/http_basic_test.dart
|
| index c54d9b7aaf350d61d65e42e4ebdd76611793b5df..eba971b1a7a93947d908f30081760e3669f8f641 100644
|
| --- a/tests/standalone/io/http_basic_test.dart
|
| +++ b/tests/standalone/io/http_basic_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;
|
|
|