Skip to content

Commit

Permalink
test: fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
susisu committed Feb 23, 2024
1 parent 20f9134 commit dcdf993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe("Brainfuck", () => {
assert<Equal<Output, "Hello, world!" | "!dlrow ,olleH" | "Bye" | "eyB">>();
});

it("continues to run programs for at least 4,000 steps", () => {
it("continues to run programs for at least 8,000 steps", () => {
type Repeat<S extends string, N extends number> = Recurse<RepeatSub<S, N, "", []>>;
type RepeatSub<S extends string, N extends number, R extends string, L extends unknown[]> =
L["length"] extends N ? R : { __rec: RepeatSub<S, N, `${R}${S}`, [...L, unknown]> };
Expand Down

0 comments on commit dcdf993

Please sign in to comment.