Skip to content

Commit

Permalink
Fix import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
taleksovska committed May 10, 2024
1 parent fa29b54 commit 9187ba3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/apps_unittests.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
from click.testing import CliRunner
from unittest.mock import patch
from src.enabler_keitaro_inc.enabler import cli as CLI
from src.enabler_keitaro_inc.commands.cmd_apps import cli as CLI


class TestAppCommands(unittest.TestCase):
Expand All @@ -13,4 +13,3 @@ def test_create_namespace_command(self, mock_s):
mock_s.run.return_value.returncode = 0
result = self.runner.invoke(CLI, ['namespace', 'test-namespace'])
self.assertEqual(result.exit_code, 0)
# self.assertIn('Namespace created successfully', result.output)

0 comments on commit 9187ba3

Please sign in to comment.