Skip to content

Commit

Permalink
Fix intentionally added error (tests do run, yay)
Browse files Browse the repository at this point in the history
  • Loading branch information
robsimmons committed Nov 9, 2023
1 parent cb751b5 commit 780f782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datalog/data.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ test('Internalizing fibonacci-shaped structured types', () => {

expect(seq[0]).toEqual(seq[1]);
expect(dataToString(seq[1], false)).toEqual('leaf');
expect(dataToString(seq[2], false)).toEqual('node leaf leaf');
expect(dataToString(seq[2], false)).toEqual('node leaf leaf');
expect(dataToString(seq[3], false)).toEqual('node leaf (node leaf leaf)');
expect(dataToString(seq[4], false)).toEqual('node (node leaf leaf) (node leaf (node leaf leaf))');

Expand Down

0 comments on commit 780f782

Please sign in to comment.