(t *testing.T)
| 178 | } |
| 179 | |
| 180 | func TestGetNotFound(t *testing.T) { |
| 181 | ctx := context.Background() |
| 182 | s := newTestStore(t) |
| 183 | if _, err := s.Get(ctx, 999); !isErr(err, ErrInstructionNotFound) { |
| 184 | t.Fatalf("expected ErrInstructionNotFound, got %v", err) |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | // privilegeErr is a synthetic error that isPrivilegeError recognizes so the |
| 189 | // copy fallback is portable across platforms. |
nothing calls this directly
no test coverage detected