Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: javatests/org/chromium/distiller/webdocument/LIEndTest.java

Issue 1230583006: Fix for keeping lists structure (Closed) Base URL: https://github.com/chromium/dom-distiller.git@master
Patch Set: Using a new approach to keep list structure. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 package org.chromium.distiller.webdocument;
2
3
4 import org.chromium.distiller.DomDistillerJsTestCase;
5
6 public class LIEndTest extends DomDistillerJsTestCase {
7
8 public void testGenerateOutput() {
9 LIEnd liEnd = new LIEnd();
10 String got = liEnd.generateOutput(false);
11 String want = "</li>";
12
13 assertEquals(want, got);
14 }
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698