Explorar o código

update threads tests

Aleksandr Kuzmenko %!s(int64=4) %!d(string=hai) anos
pai
achega
61c0e3c3b6

+ 1 - 1
tests/threads/src/cases/TestElasticThreadPool.hx

@@ -4,7 +4,7 @@ import sys.thread.IThreadPool;
 import sys.thread.ElasticThreadPool;
 
 class TestElasticThreadPool extends misc.TestThreadPoolBase {
-	override function createThreadPool(count:Int):IThreadPool {
+	function createThreadPool(count:Int):IThreadPool {
 		return new ElasticThreadPool(count);
 	}
 

+ 1 - 1
tests/threads/src/cases/TestFixedThreadPool.hx

@@ -4,7 +4,7 @@ import sys.thread.IThreadPool;
 import sys.thread.FixedThreadPool;
 
 class TestFixedThreadPool extends misc.TestThreadPoolBase {
-	override function createThreadPool(count:Int):IThreadPool {
+	function createThreadPool(count:Int):IThreadPool {
 		return new FixedThreadPool(count);
 	}
 }