From 8c2b6abf6ee4b79c5e61276431ffedd4e6a57153 Mon Sep 17 00:00:00 2001 From: Vitalii Ananev Date: Sun, 21 Apr 2024 19:23:53 +0300 Subject: [PATCH] fix tests --- .../autoconfigure/DefaultContextAwareReportPageFactoryTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/spacious_team/table_wrapper/autoconfigure/DefaultContextAwareReportPageFactoryTest.java b/src/test/java/org/spacious_team/table_wrapper/autoconfigure/DefaultContextAwareReportPageFactoryTest.java index 2ef77cb..4a52d79 100644 --- a/src/test/java/org/spacious_team/table_wrapper/autoconfigure/DefaultContextAwareReportPageFactoryTest.java +++ b/src/test/java/org/spacious_team/table_wrapper/autoconfigure/DefaultContextAwareReportPageFactoryTest.java @@ -152,7 +152,7 @@ void create_csvReportPageFromInputStreamAndSettings_ok() throws IOException { @Test void create_unknownConstructorArgTypes_exception() { // impl with constructor of (String, String) types not found - assertThrows(ReportPageInstantiationException.class, () -> factory.create("arg1", "arg2")); + assertThrows(ReportPageInstantiationException.class, () -> factory.create("arg1", "arg2", "arg3")); } @Test