change another storage test

This commit is contained in:
Jonathan Rainville 2018-05-30 17:35:54 -04:00
parent beb0df8985
commit 6712fc294c
2 changed files with 6 additions and 3 deletions

View File

@ -81,6 +81,9 @@ class Test {
if (!callback) {
callback = function () {};
}
if (!options.contracts) {
throw new Error(__('No contracts specified in the options'));
}
this.options = utils.recursiveMerge(this.options, options);
this.simOptions = this.options.simulatorOptions || {};
this.ready = false;
@ -145,8 +148,8 @@ class Test {
}
require(module) {
if (module.startsWith('contracts/')) {
const contractName = module.substr(10);
if (module.startsWith('Embark/contracts/')) {
const contractName = module.substr(17);
if (!this.engine.contractsManager.contracts[contractName]) {
throw new Error(__('No contract with the name %s', contractName));
}

View File

@ -1,6 +1,6 @@
/*global contract, config, it, embark*/
const assert = require('assert');
const SimpleStorage = embark.require('contracts/SimpleStorage');
const SimpleStorage = embark.require('Embark/contracts/SimpleStorage');
config({
contracts: {