Skip to content

Commit

Permalink
Apply further formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-schilling committed Mar 13, 2024
1 parent f5bbe6c commit 9550564
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class AASXSerializerTest {

@Test
public void testBuildAASXFull() throws IOException, TransformerException, ParserConfigurationException, SerializationException {
byte[] operationManualContent = {0, 1, 2, 3, 4};
byte[] operationManualContent = { 0, 1, 2, 3, 4 };
InMemoryFile file = new InMemoryFile(operationManualContent, "file:///TestFile.pdf");
fileList.add(file);
// This stream can be used to write the .aasx directly to a file
Expand All @@ -64,8 +64,8 @@ public void testBuildAASXFull() throws IOException, TransformerException, Parser

@Test
public void testBuildAASXSimple() throws IOException, TransformerException, ParserConfigurationException, SerializationException {
byte[] thumbnail = {0, 1, 2, 3, 4};
byte[] operationManualContent = {0, 1, 2, 3, 4};
byte[] thumbnail = { 0, 1, 2, 3, 4 };
byte[] operationManualContent = { 0, 1, 2, 3, 4 };
InMemoryFile file = new InMemoryFile(operationManualContent, "file:///aasx/OperatingManual.pdf");
InMemoryFile inMemoryFileThumbnail = new InMemoryFile(thumbnail, "file:///master/verwaltungsschale-detail-part1.png");
fileList.add(file);
Expand Down

0 comments on commit 9550564

Please sign in to comment.