diff --git a/tests/tests.js b/tests/tests.js
index 26163b6..23be97a 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -82,7 +82,10 @@ exports.defineManualTests = function (contentEl, createActionButton) {
var html = '
' +
'Results:
' +
'' +
- '
';
+ '' +
+ 'Expected result: Status box will update with type of connection using two different methods. Both values must match.' +
+ ' The result will be unknown, ethernet, wifi, 2g, 3g, 4g, none, or cellular. Make sure it matches what the device is connected to.' +
+ ' ';
document.addEventListener("online", onEvent, false);
document.addEventListener("offline", onEvent, false);
@@ -90,7 +93,7 @@ exports.defineManualTests = function (contentEl, createActionButton) {
createActionButton('Show Network Connection', function () {
printNetwork();
- }, 'actions');
+ }, 'connection');
createActionButton('Clear Log', function () {
document.getElementById('results').innerHTML = '';