aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/app_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-10-10 03:19:09 +0900
committerOphestra <cat@gensokyo.uk>2025-10-10 03:19:09 +0900
commit109aaee6593ac6e72d23b817e5b75292c2ed7bed (patch)
tree459fbd8f8c0685b33002fb1f9c101c9b39a38b6a /internal/app/app_test.go
parent22ee5ae151fa991cf23dbf1b3efb5a0d6fb9b092 (diff)
internal/app: copy parts of config to state
This is less error-prone than passing the address to the entire hst.Config struct, and reduces the likelihood of accidentally clobbering hst.Config. This also improves ease of testing. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/app_test.go')
-rw-r--r--internal/app/app_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/app_test.go b/internal/app/app_test.go
index 34313df1..96b36707 100644
--- a/internal/app/app_test.go
+++ b/internal/app/app_test.go
@@ -464,7 +464,7 @@ func TestApp(t *testing.T) {
}
gotSys = system.New(t.Context(), msg, sPriv.uid.unwrap())
- if err := (&outcomeStateSys{config: tc.config, sys: gotSys, outcomeState: &sPriv}).toSystem(); err != nil {
+ if err := sPriv.newSys(tc.config, gotSys).toSystem(); err != nil {
t.Fatalf("toSystem: error = %#v", err)
}