Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.jdk.core.test')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/util/io/xml/ExcelXmlWriterTest.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/util/io/xml/ExcelXmlWriterTest.java b/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/util/io/xml/ExcelXmlWriterTest.java
index f0837377401..2eddfaaabd1 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/util/io/xml/ExcelXmlWriterTest.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core.test/src/org/eclipse/osee/framework/jdk/core/util/io/xml/ExcelXmlWriterTest.java
@@ -24,13 +24,11 @@ import org.junit.Test;
public final class ExcelXmlWriterTest {
private static final String SAMPLE_STYLE = //
- "<Styles>\n" + //
"<Style ss:ID=\"Default\" ss:Name=\"Normal\">\n" + //
"<Alignment ss:Vertical=\"Top\" ss:WrapText=\"1\"/>\n" + //
- "</Style>\n" + //
- "</Styles>\n";
+ "</Style>\n";
private static final String BROKEN_TAGS_STYLE = //
- "<Styl" + "</Styles>\n";
+ "<Styl" + "</Style>\n";
private ISheetWriter excelWriter = null;
private static final Pattern INDIVIDUAL_STYLE_REGEX = Pattern.compile("<Style .*</Style>", Pattern.DOTALL);

Back to the top