aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-util.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-util.js b/tests/test-util.js
index f420bb4..ee44a0d 100644
--- a/tests/test-util.js
+++ b/tests/test-util.js
@@ -209,4 +209,6 @@ exports.ensureGetParamsFromURL = function (test) {
exports.ensureGetBugNo = function (test) {
var bugNo = util.getBugNo("https://bugzilla.redhat.com/show_bug.cgi?id=597141");
test.assertEqual(bugNo, 597141, "getting bug number");
+ bugNo = util.getBugNo("https://bugzilla.redhat.com/show_bug.cgi?id=serialWacom");
+ test.assertEqual(bugNo, "serialWacom", "getting a bug alias; there is no guarantee of getting number!");
};