File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
tests/integration/integrations Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def __init__(
2626
2727 def execute (self ) -> Response :
2828 integrations = self ._integrations .get_all ()
29- integrations = list (sorted (integrations , key = lambda x : x .created_at ))
29+ integrations = list (sorted (integrations , key = lambda x : x .createdAt ))
3030 integrations .reverse ()
3131 self ._response .data = integrations
3232 return self ._response
Original file line number Diff line number Diff line change 1- __version__ = "4.3.2.dev2 "
1+ __version__ = "4.3.2.dev3 "
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ class TestGetIntegrations(BaseTestCase):
1818 def folder_path (self ):
1919 return os .path .join (dirname (dirname (__file__ )), self .TEST_FOLDER_PATH )
2020
21- @pytest .mark .skip (reason = "Need to create integration before run" )
2221 def test_get (self ):
2322 integrations = sa .get_integrations ()
2423 integrations = sa .attach_items_from_integrated_storage (self .PROJECT_NAME , integrations [0 ]["name" ])
You can’t perform that action at this time.
0 commit comments