From a307421b820e0da20a4f8a077003726811ea13be Mon Sep 17 00:00:00 2001 From: "Keith J. Grant" Date: Wed, 14 Jul 2021 11:53:24 -0700 Subject: [PATCH] attempt to fix ci/merge test error --- awx/ui_next/src/components/About/About.jsx | 2 +- awx/ui_next/src/components/About/About.test.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui_next/src/components/About/About.jsx b/awx/ui_next/src/components/About/About.jsx index 09a3d11e91..64073ddb57 100644 --- a/awx/ui_next/src/components/About/About.jsx +++ b/awx/ui_next/src/components/About/About.jsx @@ -31,7 +31,7 @@ function About({ version, isOpen, onClose }) { ', () => { const modal = wrapper.find('AboutModal'); expect(modal).toHaveLength(1); expect(modal.prop('onClose')).toEqual(onClose); - expect(modal.prop('productName')).toEqual('Ansible AWX'); + expect(modal.prop('productName')).toEqual('AWX'); expect(modal.prop('isOpen')).toEqual(true); }); });