File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
src/test/java/com/rabbitmq/client/test Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 4040import java .util .concurrent .TimeoutException ;
4141import org .junit .jupiter .api .BeforeEach ;
4242import org .junit .jupiter .api .Test ;
43- import org .junit .jupiter .api .condition .EnabledIfSystemProperty ;
4443import org .junit .jupiter .api .condition .EnabledOnOs ;
4544import org .junit .jupiter .api .condition .OS ;
4645
@@ -60,15 +59,13 @@ void publishConsumeDefaults() throws Exception {
6059 }
6160
6261 @ Test
63- @ EnabledOnOs (OS .MAC )
64- @ EnabledIfSystemProperty (named = "os.arch" , matches = "aarch64" )
62+ @ EnabledOnOs (value = OS .MAC , architectures = "aarch64" )
6563 void kqueue () throws Exception {
6664 nativeIoTest (KQueueIoHandler .newFactory (), KQueueSocketChannel .class );
6765 }
6866
6967 @ Test
70- @ EnabledOnOs (OS .LINUX )
71- @ EnabledIfSystemProperty (named = "os.arch" , matches = "amd64" )
68+ @ EnabledOnOs (value = OS .LINUX , architectures = "amd64" )
7269 void epoll () throws Exception {
7370 nativeIoTest (EpollIoHandler .newFactory (), EpollSocketChannel .class );
7471 }
You can’t perform that action at this time.
0 commit comments