From 96414ca678ee0578565cbf02052ee2b3b7246d4a Mon Sep 17 00:00:00 2001 From: Dmitry Khalanskiy Date: Tue, 16 Nov 2021 20:22:16 +0300 Subject: [PATCH] Don't avoid running tests on Native --- kotlinx-coroutines-test/common/test/TestDispatchersTest.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/kotlinx-coroutines-test/common/test/TestDispatchersTest.kt b/kotlinx-coroutines-test/common/test/TestDispatchersTest.kt index 6cfc038345..789744cec0 100644 --- a/kotlinx-coroutines-test/common/test/TestDispatchersTest.kt +++ b/kotlinx-coroutines-test/common/test/TestDispatchersTest.kt @@ -55,7 +55,6 @@ class TestDispatchersTest: OrderedExecutionTestBase() { /** Tests that [Distpachers.setMain] fails when called with [Dispatchers.Main]. */ @Test - @NoNative fun testSelfSet() { assertFailsWith { Dispatchers.setMain(Dispatchers.Main) } }