use updated project when checking copy

This commit is contained in:
Jake McDermott
2018-02-24 21:28:49 -05:00
parent 8bf31600b0
commit 24fd4a360e

View File

@@ -1,10 +1,10 @@
import { getProject } from '../fixtures';
import { getUpdatedProject } from '../fixtures';
const data = {};
module.exports = {
before: (client, done) => {
getProject('test-actions')
getUpdatedProject('test-actions')
.then(obj => { data.project = obj; })
.then(done);
},