From 7d6884bd8d5110a895ceb4f92308c5eadd373429 Mon Sep 17 00:00:00 2001 From: Tobe O Date: Sat, 14 Jul 2018 19:16:36 -0400 Subject: [PATCH] Update test boilerplate --- lib/src/commands/make/test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/commands/make/test.dart b/lib/src/commands/make/test.dart index 68af780f..d95db4ff 100644 --- a/lib/src/commands/make/test.dart +++ b/lib/src/commands/make/test.dart @@ -102,7 +102,7 @@ main() async { test('${rc.snakeCase}', () async { final response = await client.get('/${rc.snakeCase}'); - expect(response, hasStatus(HttpStatus.OK)); + expect(response, hasStatus(HttpStatus.ok)); }); } ''';