summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/EnvironmentTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-10-15 16:00:52 (GMT)
committerSteven Knight <knight@baldmt.com>2001-10-15 16:00:52 (GMT)
commitda655cf7ce87bcf3d1efde51358b0f1463131f74 (patch)
tree8d21d8862be641431cf2b024adabb864ad8657ad /src/engine/SCons/EnvironmentTests.py
parent22d04cc904e082524d81e9cc243c15e9e872d28c (diff)
downloadSCons-da655cf7ce87bcf3d1efde51358b0f1463131f74.zip
SCons-da655cf7ce87bcf3d1efde51358b0f1463131f74.tar.gz
SCons-da655cf7ce87bcf3d1efde51358b0f1463131f74.tar.bz2
Remove the Node.derived attribute.
Diffstat (limited to 'src/engine/SCons/EnvironmentTests.py')
-rw-r--r--src/engine/SCons/EnvironmentTests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/EnvironmentTests.py b/src/engine/SCons/EnvironmentTests.py
index 66d64a0..b15b193 100644
--- a/src/engine/SCons/EnvironmentTests.py
+++ b/src/engine/SCons/EnvironmentTests.py
@@ -175,7 +175,7 @@ class EnvironmentTestCase(unittest.TestCase):
env = Environment()
t = env.Command(target='foo.out', source=['foo1.in', 'foo2.in'],
action='buildfoo $target $source')
- assert t.derived
+ assert t.builder
assert t.builder.action.__class__.__name__ == 'CommandAction'
assert t.builder.action.command == 'buildfoo $target $source'
assert 'foo1.in' in map(lambda x: x.path, t.sources)