1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

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
No known key found for this signature in database
GPG Key ID: 3B02CAD476EECB35

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);
},