Removed print from test

graph-rework-2
noah metz 2023-06-28 23:52:56 -06:00
parent 84a700909d
commit 41d88b9d86
1 changed files with 1 additions and 2 deletions

@ -60,7 +60,6 @@ func TestThreadWithRequirement(t * testing.T) {
func TestCustomThreadState(t * testing.T ) { func TestCustomThreadState(t * testing.T ) {
ctx := testContext(t) ctx := testContext(t)
t1, err := NewSimpleBaseThread(ctx, "Test Thread 1", []Lockable{}, ThreadActions{}, ThreadHandlers{}) _, err := NewSimpleBaseThread(ctx, "Test Thread 1", []Lockable{}, ThreadActions{}, ThreadHandlers{})
fatalErr(t, err) fatalErr(t, err)
println(t1)
} }