Skip to content

Commit 8548bba

Browse files
committed
Minor fix
1 parent 0ea79c4 commit 8548bba

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tests/unit/api/test_Lambda_Run.py renamed to tests/unit/api/test_Lambda_Handler.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from osbot.test_helpers.Test_Data import Test_Data
88

99

10-
class test_Lambda_Run(TestCase):
10+
class test_Lambda_Handler(TestCase):
1111

1212
def setUp(self):
1313
self.handler = Lambda_Handler()
@@ -19,6 +19,10 @@ def test_run__no_team(self):
1919
Dev.print(self.handler.run(Test_Data.api_gw_payload_no_team))
2020

2121

22+
23+
# tracer tests
24+
25+
2226
def test_run_with_trace(self):
2327
def rainbow(node):
2428
return Color.hsv(node.time.fraction * 0.8, 0.4, 0.9)

tests/unit/lambdas/test_lambda_gs_bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class test_lambda_gs_bot(unittest.TestCase):
1010

1111
def setUp(self):
12-
self.step_lambda = Lambda('gsbot')
12+
self.step_lambda = Lambda('osbot.lambdas.osbot')
1313

1414
#def test_lambda_update(self):
1515
# self.step_lambda.update_with_lib()

0 commit comments

Comments
 (0)