Skip to content

Commit

Permalink
Ignore some CS warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ksclarke committed Apr 7, 2024
1 parent e92cb49 commit f3243c2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ public final void test0004WithoutMinter() throws IOException {
* Runs the 0005 cookbook example with a minter.
*/
@Test
@SuppressWarnings("Checkstyle.LineLengthCheck")
public final void test0005WithMinter() throws IOException {
final var manifest = new Manifest("https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json",
new Label("en", "Picture of Göttingen taken during the 2019 IIIF Conference"));
Expand All @@ -305,6 +306,7 @@ public final void test0005WithMinter() throws IOException {
* Runs the 0005 cookbook example without a minter.
*/
@Test
@SuppressWarnings("Checkstyle.LineLengthCheck")
public final void test0005WithoutMinter() throws IOException {
final var manifest = new Manifest("https://iiif.io/api/cookbook/recipe/0005-image-service/manifest.json",
new Label("en", "Picture of Göttingen taken during the 2019 IIIF Conference"));
Expand Down Expand Up @@ -333,6 +335,7 @@ public final void test0005WithoutMinter() throws IOException {
* Runs the 0006 cookbook example with a minter.
*/
@Test
@SuppressWarnings("Checkstyle.LineLengthCheck")
public final void test0006WithMinter() throws IOException {
final var manifest = new Manifest("https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json",
new Label(new I18n("en", "Whistler's Mother"), new I18n("fr", "La Mère de Whistler")));
Expand Down Expand Up @@ -375,6 +378,7 @@ public final void test0006WithMinter() throws IOException {
* Runs the 0006 cookbook example without a minter.
*/
@Test
@SuppressWarnings("Checkstyle.LineLengthCheck")
public final void test0006WithoutMinter() throws IOException {
final var manifest = new Manifest("https://iiif.io/api/cookbook/recipe/0006-text-language/manifest.json",
new Label(new I18n("en", "Whistler's Mother"), new I18n("fr", "La Mère de Whistler")));
Expand Down

0 comments on commit f3243c2

Please sign in to comment.