Skip to content

Commit

Permalink
webcompat#272 fixing registerSuite and context of url
Browse files Browse the repository at this point in the history
  • Loading branch information
karlcow committed Aug 13, 2015
1 parent 0ee89fa commit e398593
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/functional/labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ define([
], function (intern, registerSuite, assert, require) {
'use strict';

var url = function (num) {
return intern.config.siteRoot + '/issues/' + num;
};
registerSuite(function () {

registerSuite({
name: 'labels',
var url = function (num) {
return intern.config.siteRoot + '/issues/' + num;
};

setup: function () {
// We should be logged before starting the labels test.
Expand Down Expand Up @@ -81,5 +80,6 @@ define([
.end();
}

};
});
});

0 comments on commit e398593

Please sign in to comment.