Skip to content

Commit

Permalink
Fix stray # in change to getElementById
Browse files Browse the repository at this point in the history
  • Loading branch information
wycats authored and rwjblue committed Dec 27, 2017
1 parent f71bbd0 commit 49e6727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/internal-test-helpers/lib/test-cases/abstract.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default class AbstractTestCase {
}

setupFixture(innerHTML) {
let fixture = document.getElementById('#qunit-fixture');
let fixture = document.getElementById('qunit-fixture');
fixture.innerHTML = innerHTML;
}

Expand Down

0 comments on commit 49e6727

Please sign in to comment.