aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwm624@hotmail.com <wm624@hotmail.com>2016-10-27 10:00:37 +0200
committerSean Owen <sowen@cloudera.com>2016-10-27 10:00:37 +0200
commit701a9d361b3045a25c42b3c0e44e7755d45ff78c (patch)
tree5f9ba42a10eb311256b0ba3b36958532e9be46e6
parent44c8bfda793b7655e2bd1da5e9915a09ed9d42ce (diff)
downloadspark-701a9d361b3045a25c42b3c0e44e7755d45ff78c.tar.gz
spark-701a9d361b3045a25c42b3c0e44e7755d45ff78c.tar.bz2
spark-701a9d361b3045a25c42b3c0e44e7755d45ff78c.zip
[SPARK-CORE][TEST][MINOR] Fix the wrong comment in test
## What changes were proposed in this pull request? While learning core scheduler code, I found two lines of wrong comments. This PR simply corrects the comments. ## How was this patch tested? Author: wm624@hotmail.com <wm624@hotmail.com> Closes #15631 from wangmiao1981/Rbug.
-rw-r--r--core/src/test/scala/org/apache/spark/scheduler/TaskSetManagerSuite.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/test/scala/org/apache/spark/scheduler/TaskSetManagerSuite.scala b/core/src/test/scala/org/apache/spark/scheduler/TaskSetManagerSuite.scala
index b49ba085ca..1b1a764cef 100644
--- a/core/src/test/scala/org/apache/spark/scheduler/TaskSetManagerSuite.scala
+++ b/core/src/test/scala/org/apache/spark/scheduler/TaskSetManagerSuite.scala
@@ -261,14 +261,14 @@ class TaskSetManagerSuite extends SparkFunSuite with LocalSparkContext with Logg
assert(manager.resourceOffer("exec1", "host1", PROCESS_LOCAL) == None)
clock.advance(LOCALITY_WAIT_MS)
- // Offer host1, exec1 again, at NODE_LOCAL level: the node local (task 2) should
+ // Offer host1, exec1 again, at NODE_LOCAL level: the node local (task 3) should
// get chosen before the noPref task
assert(manager.resourceOffer("exec1", "host1", NODE_LOCAL).get.index == 2)
- // Offer host2, exec3 again, at NODE_LOCAL level: we should choose task 2
+ // Offer host2, exec2, at NODE_LOCAL level: we should choose task 2
assert(manager.resourceOffer("exec2", "host2", NODE_LOCAL).get.index == 1)
- // Offer host2, exec3 again, at NODE_LOCAL level: we should get noPref task
+ // Offer host2, exec2 again, at NODE_LOCAL level: we should get noPref task
// after failing to find a node_Local task
assert(manager.resourceOffer("exec2", "host2", NODE_LOCAL) == None)
clock.advance(LOCALITY_WAIT_MS)