From 53571f030e86884bc13fe1d3760ac6bf51d2938b Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 19 Feb 2025 01:10:37 +0900 Subject: app: embed appSeal in app struct Signed-off-by: Ophestra --- internal/app/export_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/app/export_test.go') diff --git a/internal/app/export_test.go b/internal/app/export_test.go index 1dd1aa1f..54b7f345 100644 --- a/internal/app/export_test.go +++ b/internal/app/export_test.go @@ -10,11 +10,11 @@ import ( func NewWithID(id fst.ID, os sys.State) fst.App { a := new(app) a.id = newID(&id) - a.os = os + a.sys = os return a } func AppSystemBwrap(a fst.App) (*system.I, *bwrap.Config) { v := a.(*app) - return v.seal.sys.I, v.seal.sys.bwrap + return v.appSeal.sys.I, v.appSeal.sys.bwrap } -- cgit v1.3.1