Skip to content

Commit

Permalink
make tests agnostic to the internal rollup renaming optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Apr 27, 2024
1 parent 0d66bdf commit 0ee3f49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -2537,7 +2537,7 @@ moduleFor(
template: '<div id="inner-value">{{this.wrapper.content}}</div>',
});

let expectedBacktrackingMessage = backtrackingMessageFor('content', '_?Wrapper', {
let expectedBacktrackingMessage = backtrackingMessageFor('content', Wrapper.name, {
renderTree: ['x-outer', 'this.wrapper.content'],
});

Expand Down
Expand Up @@ -271,7 +271,7 @@ class ModifierManagerTest extends RenderingTestCase {
}
);

let expectedMessage = backtrackingMessageFor('name', '_?Person', {
let expectedMessage = backtrackingMessageFor('name', Person.name, {
renderTree: ['\\(instance of a `foo-bar` modifier\\)'],
includeTopLevel: false,
});
Expand Down

0 comments on commit 0ee3f49

Please sign in to comment.