[#4115] Fixed failing validation tests

Signed-off-by: Cory Johns <johnsca@geek.net>
diff --git a/ForgeHg/forgehg/tests/functional/test_controllers.py b/ForgeHg/forgehg/tests/functional/test_controllers.py
index dcdf644..896d550 100644
--- a/ForgeHg/forgehg/tests/functional/test_controllers.py
+++ b/ForgeHg/forgehg/tests/functional/test_controllers.py
@@ -126,7 +126,7 @@
         assert 'README' in resp.html.find('h2',{'class':'dark title'}).contents[2]
         content = str(resp.html.find('div',{'class':'clip grid-19'}))
         assert 'This is readme' in content, content
-        assert '<div id="l1" class="code_block">' in resp
+        assert '<span id="l1" class="code_block">' in resp
         assert 'var hash = window.location.hash.substring(1);' in resp
 
     def test_invalid_file(self):
diff --git a/ForgeSVN/forgesvn/tests/functional/test_controllers.py b/ForgeSVN/forgesvn/tests/functional/test_controllers.py
index f13d294..7274804 100644
--- a/ForgeSVN/forgesvn/tests/functional/test_controllers.py
+++ b/ForgeSVN/forgesvn/tests/functional/test_controllers.py
@@ -76,7 +76,7 @@
         assert 'README' in resp.html.find('h2',{'class':'dark title'}).contents[2]
         content = str(resp.html.find('div',{'class':'clip grid-19'}))
         assert 'This is readme' in content, content
-        assert '<div id="l1" class="code_block">' in resp
+        assert '<span id="l1" class="code_block">' in resp
         assert 'var hash = window.location.hash.substring(1);' in resp
 
     def test_invalid_file(self):