From 89dcc594274f68c18e44f074036050146460a042 Mon Sep 17 00:00:00 2001 From: TL Date: Fri, 12 Jul 2024 16:03:30 +0200 Subject: [PATCH] fix startAuthorization test --- src/SpotifyConnect/SPOCTestAuthorizerProcess.class.st | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SpotifyConnect/SPOCTestAuthorizerProcess.class.st b/src/SpotifyConnect/SPOCTestAuthorizerProcess.class.st index 7c273db..690222b 100644 --- a/src/SpotifyConnect/SPOCTestAuthorizerProcess.class.st +++ b/src/SpotifyConnect/SPOCTestAuthorizerProcess.class.st @@ -53,12 +53,12 @@ SPOCTestAuthorizerProcess >> testCallbackErrors [ { #category : #testing, - #'squeak_changestamp' : 'VE 7/11/2024 22:26' + #'squeak_changestamp' : 'TL 7/12/2024 16:02' } SPOCTestAuthorizerProcess >> testStartAuthorization [ - | entryPoints | - self auth setupCallbackService. - entryPoints := WebServer default entryPoints. - self assert: ((entryPoints at: (SPOCAuthorizer redirectRoute)) isNil not) + | entrypoints | + self auth setupCallbackService. + entrypoints := WebServer default instVarNamed: 'entryPoints'. + self assert: ((entrypoints at: (SPOCAuthorizer redirectRoute)) isNil not) ]