Skip to content

Commit

Permalink
Update pravega_client_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anju-c-das authored Feb 6, 2024
1 parent 3f3e95f commit 624ce10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/pravega_client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ def test_tags(self):
self.assertEqual(["t4", "t5"], tags)

# test for list_scope API
#scope_list = stream_manager.list_scope()
#self.assertTrue(len(scope_list) > 0, "The scope list is empty")
scope_list = stream_manager.list_scope()
self.assertTrue(len(scope_list) > 0, "The scope list is empty")
# test for list_stream API
#scope_name = str(scope_list[0])
#self.assertTrue(scope_name, "The scope name is empty")
#stream_list = stream_manager.list_stream(scope_name)
# self.assertTrue(len(stream_list) > 0, "The stream list is empty")
#self.assertTrue(len(stream_list) > 0, "The stream list is empty")
# test with false scope name for list_stream API
#false_scope = "falsescope"
#stream_list1 = stream_manager.list_stream(false_scope)
Expand Down

0 comments on commit 624ce10

Please sign in to comment.