summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-07-03 18:50:56 -0500
committerLuke Kanies <luke@madstop.com>2008-07-03 18:50:56 -0500
commit73c06c05aec8834b6fdebac107fb289575779020 (patch)
tree4db34c01a8a7de3032c97514a2b16d754447ca17 /spec
parent6124c693c98217bdb747f455eefd09d303b0b2a5 (diff)
downloadpuppet-73c06c05aec8834b6fdebac107fb289575779020.tar.gz
puppet-73c06c05aec8834b6fdebac107fb289575779020.tar.xz
puppet-73c06c05aec8834b6fdebac107fb289575779020.zip
Renaming Puppet::Event to Puppet::Transaction::Event
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/other/pgraph.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/other/pgraph.rb b/spec/unit/other/pgraph.rb
index 10ab934a6..25d99b921 100755
--- a/spec/unit/other/pgraph.rb
+++ b/spec/unit/other/pgraph.rb
@@ -47,8 +47,8 @@ end
describe Puppet::PGraph, " when matching edges" do
before do
@graph = Puppet::PGraph.new
- @event = Puppet::Event.new(:source => "a", :event => :yay)
- @none = Puppet::Event.new(:source => "a", :event => :NONE)
+ @event = Puppet::Transaction::Event.new(:source => "a", :event => :yay)
+ @none = Puppet::Transaction::Event.new(:source => "a", :event => :NONE)
@edges = {}
@edges["a/b"] = Puppet::Relationship.new("a", "b", {:event => :yay, :callback => :refresh})