From c219b9bcb64c1dc4583e53cb1193dbbdcd8fe258 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sat, 28 Jan 2017 16:41:03 -0500 Subject: [PATCH] 1.0.0 --- lib/src/matchers.dart | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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"