diff --git a/lib/src/matchers.dart b/lib/src/matchers.dart index 837d1b74..27c15522 100644 --- a/lib/src/matchers.dart +++ b/lib/src/matchers.dart @@ -16,7 +16,7 @@ class _IsJson extends Matcher { @override Description describe(Description description) { - return description.add(' should equal the desired JSON response: $value'); + return description.add('should equal the desired JSON response: $value'); } @override @@ -31,7 +31,7 @@ class _HasStatus extends Matcher { @override Description describe(Description description) { - return description.add(' should have statuc code $status'); + return description.add('should have status code $status'); } @override diff --git a/pubspec.yaml b/pubspec.yaml index 2ef8d6f4..d68b97f9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ author: "Tobe O " description: "Testing utility library for the Angel framework." homepage: "https://github.com/angel-dart/test.git" name: "angel_test" -version: "1.0.0-dev+1" +version: "1.0.0" dependencies: angel_client: "^1.0.0-dev+16" angel_framework: "^1.0.0-dev"