diff options
| author | Luke Kanies <luke@madstop.com> | 2007-09-07 11:00:13 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-09-07 11:00:13 -0500 |
| commit | 50874b2f1801b6ad2884803e98bbd220ef4af1bd (patch) | |
| tree | 934ebdb8a3e3c9de119c43a74df28ea6ae7640ed | |
| parent | ca57c793d4f1ad249f63f26609be2fa9208ca244 (diff) | |
| download | puppet-50874b2f1801b6ad2884803e98bbd220ef4af1bd.tar.gz puppet-50874b2f1801b6ad2884803e98bbd220ef4af1bd.tar.xz puppet-50874b2f1801b6ad2884803e98bbd220ef4af1bd.zip | |
Fixing a path test. I have now made the path stuff a lot cleaner, but it apparently broke this test.
| -rwxr-xr-x | test/ral/manager/type.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ral/manager/type.rb b/test/ral/manager/type.rb index 292d66b28..534c35759 100755 --- a/test/ral/manager/type.rb +++ b/test/ral/manager/type.rb @@ -758,7 +758,7 @@ class TestType < Test::Unit::TestCase exec = mk.call(4, :parent => comp) assert_equal("/server/Exec[exec4]", exec.path) - comp = Puppet::Type.newcomponent :type => "whatever", :name => "main[top]" + comp = Puppet::Type.newcomponent :type => "whatever", :name => "class[main]" exec = mk.call(5, :parent => comp) assert_equal("//Exec[exec5]", exec.path) |
