You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2015/09/17 09:49:00 UTC

spark git commit: [MINOR] [CORE] Fixes minor variable name typo

Repository: spark
Updated Branches:
  refs/heads/master 49c649fa0 -> 69c9830d2


[MINOR] [CORE] Fixes minor variable name typo

Author: Cheng Lian <li...@databricks.com>

Closes #8784 from liancheng/typo-fix.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/69c9830d
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/69c9830d
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/69c9830d

Branch: refs/heads/master
Commit: 69c9830d288d5b8d7f0abe7c8a65a4c966580a49
Parents: 49c649f
Author: Cheng Lian <li...@databricks.com>
Authored: Thu Sep 17 00:48:57 2015 -0700
Committer: Reynold Xin <rx...@databricks.com>
Committed: Thu Sep 17 00:48:57 2015 -0700

----------------------------------------------------------------------
 .../org/apache/spark/serializer/GenericAvroSerializerSuite.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/69c9830d/core/src/test/scala/org/apache/spark/serializer/GenericAvroSerializerSuite.scala
----------------------------------------------------------------------
diff --git a/core/src/test/scala/org/apache/spark/serializer/GenericAvroSerializerSuite.scala b/core/src/test/scala/org/apache/spark/serializer/GenericAvroSerializerSuite.scala
index bc9f370..87f25e7 100644
--- a/core/src/test/scala/org/apache/spark/serializer/GenericAvroSerializerSuite.scala
+++ b/core/src/test/scala/org/apache/spark/serializer/GenericAvroSerializerSuite.scala
@@ -76,9 +76,9 @@ class GenericAvroSerializerSuite extends SparkFunSuite with SharedSparkContext {
   test("caches previously seen schemas") {
     val genericSer = new GenericAvroSerializer(conf.getAvroSchema)
     val compressedSchema = genericSer.compress(schema)
-    val decompressedScheam = genericSer.decompress(ByteBuffer.wrap(compressedSchema))
+    val decompressedSchema = genericSer.decompress(ByteBuffer.wrap(compressedSchema))
 
     assert(compressedSchema.eq(genericSer.compress(schema)))
-    assert(decompressedScheam.eq(genericSer.decompress(ByteBuffer.wrap(compressedSchema))))
+    assert(decompressedSchema.eq(genericSer.decompress(ByteBuffer.wrap(compressedSchema))))
   }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org