Fediverse: Update tests broken by previous commit

This commit is contained in:
Valentin Lorentz 2022-02-19 21:18:24 +01:00
parent 78bdc469e4
commit 76f7eced5d
1 changed files with 7 additions and 7 deletions

View File

@ -348,7 +348,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
self.assertResponse( self.assertResponse(
"status https://example.org/users/someuser/statuses/1234", "status https://example.org/users/someuser/statuses/1234",
"\x02someuser\x02 (@someuser@example.org): " "\x02someuser\x02 (@someuser@example.org): "
+ "@ FirstAuthor I am replying to you", + "@FirstAuthor I am replying to you",
) )
def testStatusAttachment(self): def testStatusAttachment(self):
@ -381,7 +381,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
with self.mockRequests(expected_requests): with self.mockRequests(expected_requests):
self.assertResponse( self.assertResponse(
"status https://example.org/users/someuser/statuses/1234", "status https://example.org/users/someuser/statuses/1234",
"<error: blah>: " + "@ FirstAuthor I am replying to you", "<error: blah>: " + "@FirstAuthor I am replying to you",
) )
def testStatuses(self): def testStatuses(self):
@ -399,7 +399,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
self.assertResponse( self.assertResponse(
"statuses @someuser@example.org", "statuses @someuser@example.org",
"\x02someuser\x02 (@someuser@example.org): " "\x02someuser\x02 (@someuser@example.org): "
+ "@ FirstAuthor I am replying to you, " + "@FirstAuthor I am replying to you, "
+ "\x02someuser\x02 (@someuser@example.org): " + "\x02someuser\x02 (@someuser@example.org): "
+ "\x02[CW This is a content warning]\x02 " + "\x02[CW This is a content warning]\x02 "
+ "This is a status with a content warning, and " + "This is a status with a content warning, and "
@ -422,7 +422,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
self.assertResponse( self.assertResponse(
"statuses @someuser@example.org", "statuses @someuser@example.org",
"\x02someuser\x02 (@someuser@example.org): " "\x02someuser\x02 (@someuser@example.org): "
+ "@ FirstAuthor I am replying to you, " + "@FirstAuthor I am replying to you, "
+ "\x02someuser\x02 (@someuser@example.org): " + "\x02someuser\x02 (@someuser@example.org): "
+ "CW This is a content warning, and " + "CW This is a content warning, and "
+ "\x02Boosted User\x02 (@BoostedUser@example.net): " + "\x02Boosted User\x02 (@BoostedUser@example.net): "
@ -449,7 +449,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
self.assertSnarfResponse( self.assertSnarfResponse(
"aaa https://example.org/users/someuser/statuses/1234 bbb", "aaa https://example.org/users/someuser/statuses/1234 bbb",
"\x02someuser\x02 (@someuser@example.org): " "\x02someuser\x02 (@someuser@example.org): "
+ "@ FirstAuthor I am replying to you", + "@FirstAuthor I am replying to you",
) )
def testStatusUrlSnarferMore(self): def testStatusUrlSnarferMore(self):
@ -474,7 +474,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
self.assertSnarfResponse( self.assertSnarfResponse(
"aaa https://example.org/users/someuser/statuses/1234 bbb", "aaa https://example.org/users/someuser/statuses/1234 bbb",
"\x02someuser\x02 (@someuser@example.org): " "\x02someuser\x02 (@someuser@example.org): "
+ "@ FirstAuthor I am replying to you with a " + "@FirstAuthor I am replying to you with a "
+ " \x02(2 more messages)\x02", + " \x02(2 more messages)\x02",
) )
@ -503,7 +503,7 @@ class NetworklessFediverseTestCase(BaseFediverseTestCase):
): ):
self.assertSnarfResponse( self.assertSnarfResponse(
"aaa https://example.org/users/someuser/statuses/1234 bbb", "aaa https://example.org/users/someuser/statuses/1234 bbb",
"<error: blah>: @ FirstAuthor I am replying to you", "<error: blah>: @FirstAuthor I am replying to you",
) )
def testSnarferType(self): def testSnarferType(self):