From 08b5cab875f1a84162bb47773bbe72135135b90e Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Fri, 22 Apr 2022 09:55:19 +0200 Subject: FSM: Make data for transitions optional --- src/server_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server_test.go') diff --git a/src/server_test.go b/src/server_test.go index 84da6a3..7081bde 100644 --- a/src/server_test.go +++ b/src/server_test.go @@ -179,8 +179,8 @@ func Test_token_invalid(t *testing.T) { // Fake connect and then back to authenticated so that we can re-authenticate // Going to authenticated fakes a disconnect - state.GoTransition(CONNECTED, "") - state.GoTransition(AUTHENTICATED, "") + state.GoTransition(CONNECTED) + state.GoTransition(AUTHENTICATED) dummy_value := "37" -- cgit v1.2.3