From 404950104b6e124f23afe5cc5f1c261be8a9ab57 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 25 Jul 2018 17:46:24 -0400 Subject: [PATCH] fix logic error in test --- awx/ui/test/e2e/tests/test-inventories-list-actions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/awx/ui/test/e2e/tests/test-inventories-list-actions.js b/awx/ui/test/e2e/tests/test-inventories-list-actions.js index 082e2a1a88..55f19438d4 100644 --- a/awx/ui/test/e2e/tests/test-inventories-list-actions.js +++ b/awx/ui/test/e2e/tests/test-inventories-list-actions.js @@ -1,4 +1,8 @@ -import { getInventory, getInventoryNoSource } from '../fixtures'; +import { + getInventory, + getInventoryNoSource, + getInventorySource, +} from '../fixtures'; let data; @@ -7,6 +11,7 @@ module.exports = { const resources = [ getInventory('test-actions'), getInventoryNoSource('test-actions'), + getInventorySource('test-actions'), ]; Promise.all(resources)