Skip to content

Commit

Permalink
Fix relative-plugin-id unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Nov 10, 2013
1 parent 7a8dcbd commit 679e7f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/amd/moduleIds.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
});

define('a/spec-with-plugin', {
component: {
test: {
module: './b/plugin!./b/c'
}
});
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 679e7f8

Please sign in to comment.