Browse Source

[bug-63404] add description to assemble target

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1858773 13f79535-47bb-0310-9956-ffa450edef68
pull/145/head
PJ Fanning 5 years ago
parent
commit
d06f3225ae
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      build.xml
  2. 1
    1
      src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFTable.java

+ 1
- 1
build.xml View File

@@ -2019,7 +2019,7 @@ under the License.
</copy>
</target>

<target name="assemble" depends="jar,jar-src,jar-javadocs">
<target name="assemble" depends="jar,jar-src,jar-javadocs" description="Produce the zipped distribution files">
<property name="zipdir" value="${jar.name}-${version.id}"/>

<mappedresources id="legal-files" cache="true">

+ 1
- 1
src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFTable.java View File

@@ -235,7 +235,7 @@ public final class TestXSSFTable {
try (XSSFWorkbook wb = XSSFTestDataSamples.openSampleWorkbook("StructuredReferences.xlsx")) {
XSSFTable table = wb.getTable("\\_Prime.1");
assertEquals("\\_Prime.1", table.getDisplayName());
table.setDisplayName("Display name");
assertEquals("Display name", table.getDisplayName());
assertEquals("\\_Prime.1", table.getName()); // name and display name are different

Loading…
Cancel
Save