From 332850f79842335abdfd4c13b88f5f8f34834139 Mon Sep 17 00:00:00 2001 From: Diogo Biazus Date: Thu, 5 Jun 2014 13:17:35 -0400 Subject: [PATCH] fixed another video spec. now URL always comes with // --- spec/models/concerns/project/video_handler_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/concerns/project/video_handler_spec.rb b/spec/models/concerns/project/video_handler_spec.rb index 5c1a2763..e527c10f 100644 --- a/spec/models/concerns/project/video_handler_spec.rb +++ b/spec/models/concerns/project/video_handler_spec.rb @@ -24,7 +24,7 @@ describe Project::VideoHandler do end it "should store the new embed url" do - project.video_embed_url.should == 'player.vimeo.com/video/49584778' + project.video_embed_url.should == '//player.vimeo.com/video/49584778' end end end