Skip to content

Commit

Permalink
feat: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioHeredia committed Feb 28, 2024
1 parent 345933f commit 71d805b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/catalog/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


# List modules
modules_list = Modules.get_list()
modules_list = list(Modules.get_items().keys())

assert isinstance(modules_list, list)
assert 'deep-oc-image-classification-tf' in modules_list
Expand Down
2 changes: 1 addition & 1 deletion tests/catalog/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


# List tools
tools_list = Tools.get_list()
tools_list = list(Tools.get_items().keys())

assert isinstance(tools_list, list)
assert 'deep-oc-federated-server' in tools_list
Expand Down

0 comments on commit 71d805b

Please sign in to comment.