Fixed test typo.

(cherry picked from commit aab5b062bd8c17577974f67d6270b27ac98b73b0)
This commit is contained in:
Harald Kuhr 2022-05-04 18:22:14 +02:00
parent f625622b10
commit 2d974874a9

View File

@ -1,16 +1,16 @@
package com.twelvemonkeys.imageio.metadata.tiff;
import com.twelvemonkeys.io.FastByteArrayOutputStream;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Random;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import com.twelvemonkeys.io.FastByteArrayOutputStream;
/**
* HalfTest.
@ -97,7 +97,7 @@ public class HalfTest {
}
@Test(expected = NullPointerException.class)
public void testParseHAlfNull() {
public void testParseHalfNull() {
Half.parseHalf(null);
}