diff options
| author | Luke Kanies <luke@puppetlabs.com> | 2010-04-12 11:09:20 -0700 |
|---|---|---|
| committer | Luke Kanies <luke@puppetlabs.com> | 2010-04-12 11:09:20 -0700 |
| commit | 1a6e08fc9c4e5c39f76d14c762356865c10e1dc7 (patch) | |
| tree | ee668cfa1128584975989600174305a0211bee14 | |
| parent | 410b71ca4c85971b4fa3ccab461942c5968816dc (diff) | |
| download | puppet-1a6e08fc9c4e5c39f76d14c762356865c10e1dc7.tar.gz puppet-1a6e08fc9c4e5c39f76d14c762356865c10e1dc7.tar.xz puppet-1a6e08fc9c4e5c39f76d14c762356865c10e1dc7.zip | |
Fixing Transaction integration test
This was failing because it was expecting a call to
Puppet::Type#evaluate, which is no longer used.
Signed-off-by: Luke Kanies <luke@puppetlabs.com>
| -rwxr-xr-x | spec/integration/transaction.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/transaction.rb b/spec/integration/transaction.rb index b87bfb3b5..badf5611b 100755 --- a/spec/integration/transaction.rb +++ b/spec/integration/transaction.rb @@ -26,7 +26,7 @@ describe Puppet::Transaction do transaction = Puppet::Transaction.new(catalog) - resource.expects(:evaluate).raises "this is a failure" + resource.expects(:retrieve).raises "this is a failure" resource.stubs(:err) child_resource.expects(:retrieve).never |
