Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

Commit

Permalink
Fix test should syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
theopak committed Sep 2, 2015
1 parent 36f1dbd commit d9f47a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/abnormal_config_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('basic config validation', function() {
var config = JSON.parse(fs.readFileSync(path.join(config_dir, '.dotfile.json'), {'encoding': 'utf8'}));
var pm = ProxyManager;
pm.init('./test/config.d', function() {
pm.proxies.should.not.contain(config.service_name);
pm.proxies.should.not.containDeep(config.service_name);
done();
});
});
Expand All @@ -63,7 +63,7 @@ describe('basic config validation', function() {
var config = JSON.parse(fs.readFileSync(path.join(config_dir, 'invalid_file_extension.md'), {'encoding': 'utf8'}));
var pm = ProxyManager;
pm.init('./test/config.d', function() {
pm.proxies.should.not.contain(config.service_name);
pm.proxies.should.not.containDeep(config.service_name);
done();
});
});
Expand Down

0 comments on commit d9f47a4

Please sign in to comment.