about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-11-28 20:48:24 +0000
committerEric Wong <normalperson@yhbt.net>2011-11-28 20:48:24 +0000
commit46e6a9058535b41a27aaac7ee98e84a335f0fade (patch)
treedd50ca59244094bcea3232ef9f78de9599f5126f
parentbc9dc23cc4552fe46f0473cf208169c41e6892aa (diff)
downloadmogilefs-client-46e6a9058535b41a27aaac7ee98e84a335f0fade.tar.gz
-rw-r--r--test/test_mogilefs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_mogilefs.rb b/test/test_mogilefs.rb
index 3308585..7e8e3a2 100644
--- a/test/test_mogilefs.rb
+++ b/test/test_mogilefs.rb
@@ -249,7 +249,7 @@ class TestMogileFS__MogileFS < TestMogileFS
   end
 
   def test_store_content_http
-    received = Tempfile.new('recieved')
+    received = Tempfile.new('received')
     expected = "PUT /path HTTP/1.0\r\nContent-Length: 4\r\n\r\ndata"
 
     t = TempServer.new(Proc.new do |serv, accept|
@@ -282,7 +282,7 @@ class TestMogileFS__MogileFS < TestMogileFS
 
 
   def test_store_content_with_writer_callback
-    received = Tempfile.new('recieved')
+    received = Tempfile.new('received')
     expected = "PUT /path HTTP/1.0\r\nContent-Length: 40\r\n\r\n"
     10.times do
       expected += "data"