From e95f6aa9d3b0e6cb48b66d855efc9c7dcc7f7baf Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Sat, 8 Oct 2022 08:14:49 -0700 Subject: [PATCH] minor noop comment tweaks --- salmon.py | 1 - tests/test_activitypub.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/salmon.py b/salmon.py index b10a813..3d6b785 100644 --- a/salmon.py +++ b/salmon.py @@ -36,7 +36,6 @@ SUPPORTED_VERBS = ( @app.post(f'//salmon') def slap(acct): """Accepts POSTs to /[ACCT]/salmon and converts to outbound webmentions.""" - # TODO: unify with activitypub body = request.get_data(as_text=True) logger.info(f'Got: {body}') diff --git a/tests/test_activitypub.py b/tests/test_activitypub.py index 609dfbc..d376289 100644 --- a/tests/test_activitypub.py +++ b/tests/test_activitypub.py @@ -410,7 +410,7 @@ class ActivityPubTest(testutil.TestCase): got = self.client.post('/realize.be/inbox', json=DELETE) self.assertEqual(200, got.status_code) - # TODO: bring back + # TODO: bring back once we actually delete followers # self.assertEqual([other], Follower.query().fetch()) def test_inbox_webmention_discovery_connection_fails(self, mock_head,