diff options
| author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-02-07 23:56:59 +0000 |
|---|---|---|
| committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-02-07 23:56:59 +0000 |
| commit | 6d8068eddd0d29ec53f62557eb53f6ebb8e40591 (patch) | |
| tree | 8c93181b9325fee95d7ecdc6e79341ff6d3604b0 /test/client | |
| parent | 162602323406117444ce4375ead91d8f92f2b31a (diff) | |
| download | puppet-6d8068eddd0d29ec53f62557eb53f6ebb8e40591.tar.gz puppet-6d8068eddd0d29ec53f62557eb53f6ebb8e40591.tar.xz puppet-6d8068eddd0d29ec53f62557eb53f6ebb8e40591.zip | |
Moving some of the stand-alone classes into the util/ subdirectory, to clean up the top-level namespace a bit. This is a lot of file modifications, but most of them just change class names and file paths.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2178 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/client')
| -rwxr-xr-x | test/client/master.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/client/master.rb b/test/client/master.rb index 8a7bf4f8b..ccd808bbd 100755 --- a/test/client/master.rb +++ b/test/client/master.rb @@ -482,14 +482,14 @@ end # Now make sure the config time is cached assert(master.compile_time, "No stored config time") - assert_equal(master.compile_time, Puppet::Storage.cache(:configuration)[:compile_time], "times did not match") + assert_equal(master.compile_time, Puppet::Util::Storage.cache(:configuration)[:compile_time], "times did not match") time = master.compile_time master.clear File.unlink(file) - Puppet::Storage.store + Puppet::Util::Storage.store # Now make a new master - Puppet::Storage.clear + Puppet::Util::Storage.clear master = mkclient(driver) master.run assert_equal(time, master.compile_time, "time was not retrieved from cache") |
