Skip to content

Commit

Permalink
Drop rogue prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansick committed Jul 27, 2023
1 parent bc6dd6d commit f55c977
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/domain/githubtree_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ def test_githubtreenode() -> None:
assert owner_node.contents[0].title == "times-square-demo"
repo_node = owner_node.contents[0]
assert repo_node.node_type == GitHubNodeType.repo
print(owner_node)

assert repo_node.contents[0].title == "Alpha"
assert repo_node.contents[0].squareone_path == (
Expand Down
1 change: 0 additions & 1 deletion tests/handlers/v1/github_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ async def test_github(client: AsyncClient) -> None:
assert r.status_code == 200
data = r.json()
assert "contents" in data
print(data)
assert data["contents"][0]["node_type"] == "owner"
assert data["contents"][0]["title"] == "lsst"
assert data["contents"][0]["path"] == "lsst"
Expand Down

0 comments on commit f55c977

Please sign in to comment.