Skip to content

Commit 4a601d6

Browse files
committed
PDFBOX-5660: fix typo
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1927993 13f79535-47bb-0310-9956-ffa450edef68
1 parent ccd6cc6 commit 4a601d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fontbox/src/test/java/org/apache/fontbox/afm/FontMetricsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ void testMetricSets()
132132
fontMetrics.setMetricSets(-1);
133133
fail("An IllegalArgumentException should have been thrown");
134134
}
135-
catch (IllegalArgumentException excpetion)
135+
catch (IllegalArgumentException exception)
136136
{
137137
// do nothing
138138
}
@@ -143,7 +143,7 @@ void testMetricSets()
143143
fontMetrics.setMetricSets(3);
144144
fail("An IllegalArgumentException should have been thrown");
145145
}
146-
catch (IllegalArgumentException excpetion)
146+
catch (IllegalArgumentException exception)
147147
{
148148
// do nothing
149149
}

0 commit comments

Comments
 (0)