From 693d8a11b223974535c390f686c11016b5f52521 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Wed, 23 Jan 2013 15:31:52 -0600 Subject: [PATCH] Fixes feature tests misleading success results --- test/features/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/features/index.html b/test/features/index.html index fc3175be2..1c3639392 100644 --- a/test/features/index.html +++ b/test/features/index.html @@ -60,7 +60,7 @@ limitations under the License. for (var i = 0; i < tests.length; i++) { var test = tests[i]; var row = document.createElement('tr'); - row.id = test.id; + row.id = 'test-results-' + test.id; var nameTd = document.createElement('td'); nameTd.className = 'name'; nameTd.innerHTML = test.name;