nizhikov commented on code in PR #11938: URL: https://github.com/apache/ignite/pull/11938#discussion_r2003696056
########## modules/core/src/test/java/org/apache/ignite/internal/marshaller/optimized/OptimizedMarshallerSelfTest.java: ########## @@ -36,8 +39,17 @@ @GridCommonTest(group = "Marshaller") public class OptimizedMarshallerSelfTest extends GridMarshallerAbstractTest { /** {@inheritDoc} */ - @Override protected Marshaller marshaller() { - return new OptimizedMarshaller(false); + @Override protected Marshaller marshaller() throws IgniteCheckedException { + OptimizedMarshaller marsh = new OptimizedMarshaller(false); + + MarshallerContextTestImpl ctx = new MarshallerContextTestImpl(); + + ctx.setMarshallerMappingFileStoreDir(new SharedFileTree(U.defaultWorkDirectory()).marshaller()); + ctx.onMarshallerProcessorStarted(newContext(), null); + + marsh.setContext(ctx); Review Comment: Fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org