From 99023a3d3284b451c95f2cfa9b6694106e18802d Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Mon, 7 Apr 2014 23:06:13 -0700 Subject: [PATCH] test(NgInclude): uniit a test --- test/directive/ng_include_spec.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/directive/ng_include_spec.dart b/test/directive/ng_include_spec.dart index 1a7e91755..b1b793b70 100644 --- a/test/directive/ng_include_spec.dart +++ b/test/directive/ng_include_spec.dart @@ -21,7 +21,7 @@ main() { expect(element.text).toEqual('my name is Vojta'); })); - iit('should fetch template from url using interpolation', async((Scope scope, TemplateCache cache) { + it('should fetch template from url using interpolation', async((Scope scope, TemplateCache cache) { cache.put('tpl1.html', new HttpResponse(200, 'My name is {{name}}')); cache.put('tpl2.html', new HttpResponse(200, 'I am {{name}}'));