Skip to content

Commit

Permalink
remove print statements from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
g-simmons committed Aug 9, 2024
1 parent d9fddc1 commit cd616f5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ def test_serialize_empty_pipelines(self):
server = Server(
pipelines={"default": Pipeline("default")},
)
print(server.serialize_pipelines())
assert server.serialize_pipelines() == {
"pipelines": {"default": {"subscribers": [], "processors": []}}
}
Expand All @@ -179,7 +178,6 @@ def process(self, input: Production) -> Production:
server = Server(
pipelines={"default": pipeline},
)
print(server.serialize_pipelines())

assert server.serialize_pipelines() == {
"pipelines": {
Expand Down Expand Up @@ -217,7 +215,6 @@ def process(self, input: Production) -> Production:
server = Server(
pipelines={"default": pipeline},
)
print(server.serialize_pipelines())

assert server.serialize_pipelines() == {
"pipelines": {
Expand Down

0 comments on commit cd616f5

Please sign in to comment.