diff --git a/test/test-ui.js b/test/test-ui.js
index 74409a913..fee5647e8 100644
--- a/test/test-ui.js
+++ b/test/test-ui.js
@@ -45,10 +45,10 @@
}
function init() {
- var header = document.getElementById('qunit-header');
- if (header) {
- header.appendChild(label1);
- header.appendChild(label2);
+ var toolbar = document.getElementById('qunit-testrunner-toolbar');
+ if (toolbar) {
+ toolbar.appendChild(label1);
+ toolbar.appendChild(label2);
dropdown.selectedIndex = (function() {
switch (build) {
@@ -70,16 +70,16 @@
var label1 = document.createElement('label');
label1.innerHTML =
- 'norequire';
+ 'No RequireJS';
var label2 = document.createElement('label');
label2.innerHTML =
'build';
+ '' +
+ '' +
+ '' +
+ '' +
+ ' Build';
var checkbox = label1.firstChild,
dropdown = label2.firstChild;