diff options
author | Luke Kanies <luke@madstop.com> | 2008-12-02 22:28:22 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-12-02 22:28:22 -0600 |
commit | 6b30171435583b1a69c4ffe7b8b1760f5585cd38 (patch) | |
tree | d9f0864b1f8426efa1c66227a2d9343be22977f6 /test/network | |
parent | 99a9b5a045af6f1c68619792a45603cbe450652d (diff) | |
download | puppet-6b30171435583b1a69c4ffe7b8b1760f5585cd38.tar.gz puppet-6b30171435583b1a69c4ffe7b8b1760f5585cd38.tar.xz puppet-6b30171435583b1a69c4ffe7b8b1760f5585cd38.zip |
Fixing all broken tests. Most of them were broken by fileserving changes.
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'test/network')
-rwxr-xr-x | test/network/handler/master.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/network/handler/master.rb b/test/network/handler/master.rb index babddec7d..8e55f104c 100755 --- a/test/network/handler/master.rb +++ b/test/network/handler/master.rb @@ -23,7 +23,7 @@ class TestMaster < Test::Unit::TestCase def test_freshness_is_always_now now1 = mock 'now1' - Time.expects(:now).returns(now1) + Time.stubs(:now).returns(now1) now1.expects(:to_i).returns 10 |