From 85067e381755997893e51000575c700eeba1bb6c Mon Sep 17 00:00:00 2001 From: Martin Morales Date: Tue, 4 Apr 2023 09:45:37 -0500 Subject: [PATCH] Updated comments Signed-off-by: Martin Morales --- .../components/fields/EntityPicker/EntityPicker.test.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/scaffolder/src/components/fields/EntityPicker/EntityPicker.test.tsx b/plugins/scaffolder/src/components/fields/EntityPicker/EntityPicker.test.tsx index d71e6cb776..598616aaa3 100644 --- a/plugins/scaffolder/src/components/fields/EntityPicker/EntityPicker.test.tsx +++ b/plugins/scaffolder/src/components/fields/EntityPicker/EntityPicker.test.tsx @@ -425,7 +425,7 @@ describe('', () => { // Verify that the input is empty expect(input).toHaveValue(''); - // Verify that the handleChange function was called with null + // Verify that the handleChange function was called with undefined expect(onChange).toHaveBeenCalledWith(undefined); }); }); @@ -522,7 +522,7 @@ describe('', () => { // Verify that the input is empty expect(input).toHaveValue(''); - // Verify that the handleChange function was called with null + // Verify that the handleChange function was called with undefined expect(onChange).toHaveBeenCalledWith(undefined); }); }); @@ -620,7 +620,7 @@ describe('', () => { // Verify that the input is empty expect(input).toHaveValue(''); - // Verify that the handleChange function was called with null + // Verify that the handleChange function was called with undefined expect(onChange).toHaveBeenCalledWith(undefined); }); }); @@ -718,7 +718,7 @@ describe('', () => { // Verify that the input is empty expect(input).toHaveValue(''); - // Verify that the handleChange function was called with null + // Verify that the handleChange function was called with undefined expect(onChange).toHaveBeenCalledWith(undefined); }); });