diff options
author | Joe Hunkeler <jhunk@stsci.edu> | 2016-02-25 00:13:47 -0500 |
---|---|---|
committer | Joe Hunkeler <jhunk@stsci.edu> | 2016-02-25 00:13:47 -0500 |
commit | ed1c0267cea878139a36f729073f9f811f984f2e (patch) | |
tree | b250f0873532d9db0a36d83526179ebac0ea643e /cbc | |
parent | eaa688c77f25e863cef0523895a14a16ce30a8a3 (diff) | |
download | cbc-ed1c0267cea878139a36f729073f9f811f984f2e.tar.gz |
Fix failing on build_id
Diffstat (limited to 'cbc')
-rw-r--r-- | cbc/tests/test_cbc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cbc/tests/test_cbc.py b/cbc/tests/test_cbc.py index 84e4e67..6d0de88 100644 --- a/cbc/tests/test_cbc.py +++ b/cbc/tests/test_cbc.py @@ -58,7 +58,7 @@ class TestCBC(object): # Test against conda's build system conda_meta = conda_build.metadata.MetaData(self.env.pkgdir) nose.tools.assert_is_instance(conda_meta, conda_build.metadata.MetaData) - nose.tools.assert_equal(conda_meta.dist(), 'test-1.0.0-py34_1') + nose.tools.assert_equal(conda_meta.dist(), 'test-1.0.0-'+conda_meta.build_id()) |