From d79ed485daf43ffe9557750ec4ef61c55ce189a2 Mon Sep 17 00:00:00 2001 From: Mark Rickert Date: Thu, 12 Sep 2013 15:58:18 -0400 Subject: [PATCH] Clean up spec for tintColor, but it still doesn't work. --- spec/unit/delegate_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/unit/delegate_spec.rb b/spec/unit/delegate_spec.rb index 29bf761..4518c25 100644 --- a/spec/unit/delegate_spec.rb +++ b/spec/unit/delegate_spec.rb @@ -106,10 +106,10 @@ describe "PM::Delegate Colors" do @subject = TestDelegateRed.new @subject.mock!(:on_load) do |app, options| - app.windows.first.rootViewController.view.tintColor.should == UIColor.blackColor + app.windows.first.rootViewController.view.tintColor.should == UIColor.redColor end - @subject.application(UIApplication.sharedApplication, didFinishLaunchingWithOptions:{jamon: true}) + @subject.application(UIApplication.sharedApplication, didFinishLaunchingWithOptions:nil) end end