From fa0bdab523f53ead58af806f068f501f7c24bbdc Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 22 Dec 2020 21:27:46 +0000 Subject: [PATCH] Tidying --- epicyon.py | 2 +- tests.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/epicyon.py b/epicyon.py index 4e0de4b2c..6b06ef495 100644 --- a/epicyon.py +++ b/epicyon.py @@ -1984,7 +1984,7 @@ if args.testdata: testClientToServer, testCommentsEnabled, 'img/logo.png', 'image/png', - 'Description of image', + 'Description of image', useBlurhash) createPublicPost(baseDir, nickname, domain, port, httpPrefix, "man these centralized sites are like the worst!", diff --git a/tests.py b/tests.py index e90f6796f..eb7f78786 100644 --- a/tests.py +++ b/tests.py @@ -276,7 +276,7 @@ def createServerAlice(path: str, domain: str, port: int, if hasPosts: testFollowersOnly = False testSaveToFile = True - clientToServer = False + clientToServer = False testCommentsEnabled = True testAttachImageFilename = None testMediaType = None @@ -375,7 +375,8 @@ def createServerBob(path: str, domain: str, port: int, testSaveToFile = True testCommentsEnabled = True testAttachImageFilename = None - testMediaType = None + testImageDescription = None + testMediaType = None createPublicPost(path, nickname, domain, port, httpPrefix, "It's your life, live it your way.", testFollowersOnly, @@ -2589,7 +2590,7 @@ def testReplyToPublicPost() -> None: def getFunctionCallArgs(name: str, lines: [], startLineCtr: int) -> []: """Returns the arguments of a function call given lines of source code and a starting line number - """ + """ argsStr = lines[startLineCtr].split(name + '(')[1] if ')' in argsStr: argsStr = argsStr.split(')')[0].replace(' ', '').split(',')