You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2023/08/03 23:16:36 UTC

[superset] branch bump_esilnt updated (74f387d158 -> c80e7430bc)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a change to branch bump_esilnt
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 74f387d158 fix test
     new c80e7430bc fix tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (74f387d158)
            \
             N -- N -- N   refs/heads/bump_esilnt (c80e7430bc)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[superset] 01/01: fix tests

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch bump_esilnt
in repository https://gitbox.apache.org/repos/asf/superset.git

commit c80e7430bc3d602830bbed8732359f9f2293513a
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Wed Aug 2 15:14:02 2023 -0700

    fix tests
---
 .../AdhocFilterEditPopoverSimpleTabContent.test.tsx                      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/AdhocFilterEditPopoverSimpleTabContent.test.tsx b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/AdhocFilterEditPopoverSimpleTabContent.test.tsx
index 721a374154..551316c2f7 100644
--- a/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/AdhocFilterEditPopoverSimpleTabContent.test.tsx
+++ b/superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/AdhocFilterEditPopoverSimpleTabContent.test.tsx
@@ -553,6 +553,7 @@ describe('AdhocFilterEditPopoverSimpleTabContent Advanced data Type Test', () =>
       userEvent.type(operatorValueField, '{enter}');
     });
 
+    // eslint-disable-next-line jest-dom/prefer-in-document
     expect(screen.getByText('EQUALS')).not.toBeNull();
   });
 });