mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix test case after 86bce4a2ae.
				
					
				
			This commit is contained in:
		| @@ -18,15 +18,15 @@ func assertLineEqual(t *testing.T, d1 *DiffLine, d2 *DiffLine) { | ||||
|   } | ||||
| } | ||||
|  | ||||
| func TestDiffToHtml(t *testing.T) { | ||||
|   assertEqual(t, "foo <span class=\"added-code\">bar</span> biz", diffToHtml([]dmp.Diff{ | ||||
| func TestDiffToHTML(t *testing.T) { | ||||
|   assertEqual(t, "foo <span class=\"added-code\">bar</span> biz", diffToHTML([]dmp.Diff{ | ||||
|     dmp.Diff{dmp.DiffEqual, "foo "}, | ||||
|     dmp.Diff{dmp.DiffInsert, "bar"}, | ||||
|     dmp.Diff{dmp.DiffDelete, " baz"}, | ||||
|     dmp.Diff{dmp.DiffEqual, " biz"}, | ||||
|   }, DIFF_LINE_ADD)) | ||||
|  | ||||
|   assertEqual(t, "foo <span class=\"removed-code\">bar</span> biz", diffToHtml([]dmp.Diff{ | ||||
|   assertEqual(t, "foo <span class=\"removed-code\">bar</span> biz", diffToHTML([]dmp.Diff{ | ||||
|     dmp.Diff{dmp.DiffEqual, "foo "}, | ||||
|     dmp.Diff{dmp.DiffDelete, "bar"}, | ||||
|     dmp.Diff{dmp.DiffInsert, " baz"}, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user