diff options
Diffstat (limited to 'test/config.js')
-rw-r--r-- | test/config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/config.js b/test/config.js index be28fc9..d997c46 100644 --- a/test/config.js +++ b/test/config.js @@ -46,7 +46,7 @@ describe('Configuration', function() { return mock.setupDefaultBook() .then(function(_book) { book = _book; - return book.config.load(); + return book.prepareConfig(); }); }); @@ -64,7 +64,7 @@ describe('Configuration', function() { }) .then(function(_book) { book = _book; - return book.config.load(); + return book.prepareConfig(); }); }); @@ -82,7 +82,7 @@ describe('Configuration', function() { }) .then(function(_book) { book = _book; - return book.config.load(); + return book.prepareConfig(); }); }); |