From 679e7f85fc6a7205b25e45b6e93b9eae105942fe Mon Sep 17 00:00:00 2001 From: Brian Cavalier Date: Sun, 10 Nov 2013 14:45:30 -0500 Subject: [PATCH] Fix relative-plugin-id unit test --- test/amd/moduleIds.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/amd/moduleIds.html b/test/amd/moduleIds.html index bd0b888..f155350 100644 --- a/test/amd/moduleIds.html +++ b/test/amd/moduleIds.html @@ -38,7 +38,7 @@ }); define('a/spec-with-plugin', { - component: { + test: { module: './b/plugin!./b/c' } }); @@ -166,7 +166,7 @@ var d = new doh.Deferred(); wire('a/spec-with-plugin').then( function(c) { - d.callback(c.component === 'a/b/c'); + d.callback(c.test === 'a/b/c'); }, function(e) { console.error(e.stack);