Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: Test fixes #288

Merged
merged 3 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ function run_test()
TEST_OK=$((TEST_OK + 1))
else
TEST_FAIL=$((TEST_FAIL + 1))
exit 1
fi
}
export -f run_test
Expand Down
4 changes: 2 additions & 2 deletions src/lib/plot/contour.typ
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// - data (array): A 2D array of floats where the first index is the row and the second index is the column
// - offset (float): Z value threshold of a cell compare with `op` to, to count as true
// - op (auto,string,funciton): Z value comparison oparator:
// - op (auto,string,function): Z value comparison oparator:
// / `">", ">=", "<", "<=", "!=", "=="`: Use the passed operator to compare z.
// / `auto`: Use ">=" for positive z values, "<=" for negative z values.
// / `<function>`: If set to a function, that function gets called
Expand Down Expand Up @@ -257,7 +257,7 @@
/// - x-samples (int): X axis domain samples (2 < n)
/// - y-samples (int): Y axis domain samples (2 < n)
/// - interpolate (bool): Use linear interpolation between sample values
/// - op (auto,string,funciton): Z value comparison oparator:
/// - op (auto,string,function): Z value comparison oparator:
/// / `">", ">=", "<", "<=", "!=", "=="`: Use the operator for comparison.
/// / `auto`: Use ">=" for positive z values, "<=" for negative z values.
/// / `<function>`: Call comparison function of the format `(plot-z, data-z) => boolean`,
Expand Down
Binary file removed tests/local-package/ref.png
Binary file not shown.
13 changes: 0 additions & 13 deletions tests/local-package/test.typ

This file was deleted.

Loading