فهرست منبع

update threads tests

Aleksandr Kuzmenko 4 سال پیش
والد
کامیت
61c0e3c3b6
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      tests/threads/src/cases/TestElasticThreadPool.hx
  2. 1 1
      tests/threads/src/cases/TestFixedThreadPool.hx

+ 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);
 	}
 }