Skip to content

Commit 679e7f8

Browse files
committed
Fix relative-plugin-id unit test
1 parent 7a8dcbd commit 679e7f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/amd/moduleIds.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
});
3939

4040
define('a/spec-with-plugin', {
41-
component: {
41+
test: {
4242
module: './b/plugin!./b/c'
4343
}
4444
});
@@ -166,7 +166,7 @@
166166
var d = new doh.Deferred();
167167
wire('a/spec-with-plugin').then(
168168
function(c) {
169-
d.callback(c.component === 'a/b/c');
169+
d.callback(c.test === 'a/b/c');
170170
},
171171
function(e) {
172172
console.error(e.stack);

0 commit comments

Comments
 (0)