diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-04-22 09:55:19 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-04-22 09:55:19 +0200 |
| commit | 08b5cab875f1a84162bb47773bbe72135135b90e (patch) | |
| tree | 1228363b956b10b240fe05b13c9d9bb2e79d9bb6 /src/server_test.go | |
| parent | c7efec780a9e11e97690a19cf751533279788e79 (diff) | |
FSM: Make data for transitions optional
Diffstat (limited to 'src/server_test.go')
| -rw-r--r-- | src/server_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
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" |
