Skip to content
This repository was archived by the owner on Jan 10, 2026. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Compile Code
run: brownie compile --size

- name: Run Splitted Tests
- name: Run Split Tests
if: steps.check_test_durations.outputs.files_exists == 'true'
run: brownie test tests/functional --gas --coverage --splits 6 --group ${{ matrix.group }};

Expand Down
2 changes: 1 addition & 1 deletion contracts/BaseFeeOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface IBaseFee {

/**
* @dev Interprets the base fee from our base fee provider
* contract to determine if a harvest is permissable.
* contract to determine if a harvest is permissible.
*
* Version 0.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def arg_types(args):
args = args[0]["components"]

# NOTE: Need to filter out `name` and `internalType`,
# it isn't useful and hurts our comparisions
# it isn't useful and hurts our comparisons
return [
{k: v for k, v in arg.items() if k not in ("internalType", "name")}
for arg in args
Expand Down