diff options
author | Steven Knight <knight@baldmt.com> | 2002-03-27 03:04:00 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-03-27 03:04:00 (GMT) |
commit | b93195157d7f40072cde51f2c5cae726d7f62b2d (patch) | |
tree | 1f8261affa0d385b922bceb394c3b9db38509ddc /src | |
parent | 1ffd7687fe1aa4c9b438a17126052ef3d3234bfe (diff) | |
download | SCons-b93195157d7f40072cde51f2c5cae726d7f62b2d.zip SCons-b93195157d7f40072cde51f2c5cae726d7f62b2d.tar.gz SCons-b93195157d7f40072cde51f2c5cae726d7f62b2d.tar.bz2 |
Fix problems with two tests (one portability, one syntax).
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/Node/FSTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Node/FSTests.py b/src/engine/SCons/Node/FSTests.py index bea1499..98abcfc 100644 --- a/src/engine/SCons/Node/FSTests.py +++ b/src/engine/SCons/Node/FSTests.py @@ -398,8 +398,8 @@ class FSTestCase(unittest.TestCase): f2 = fs.File("f2") f2.scan(scn1) f2.scan(scn2) - assert f2.implicit[scn1][0].path_ == 'subdir/f2', f2.implicit[scn1][0].path_ - assert f2.implicit[scn2][0].path_ == 'subdir/f2', f2.implicit[scn2][0].path_ + match(f2.implicit[scn1][0].path_, 'subdir/f2') + match(f2.implicit[scn2][0].path_, 'subdir/f2') # Test building a file whose directory is not there yet... f1 = fs.File(test.workpath("foo/bar/baz/ack")) |