Skip to content

tests: use relative path in utils contracts #383

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

Merged
merged 3 commits into from
Feb 5, 2025
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file.

The format is based on [Common Changelog](https://common-changelog.org/).

[1.1.1]: https://github.com/sablier-labs/flow/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/sablier-labs/flow/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/sablier-labs/flow/releases/tag/v1.0.0

## [1.1.1] - 2025-02-05

### Changed

- Use relative path to import source contracts in test utils files
([#383](https://github.com/sablier-labs/flow/pull/383))

## [1.1.0] - 2025-01-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@sablier/flow",
"description": "Flow smart contracts of the Sablier token distribution protocol",
"license": "BUSL-1.1",
"version": "1.1.0",
"version": "1.1.1",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
Expand Down
3 changes: 2 additions & 1 deletion tests/utils/Assertions.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ pragma solidity >=0.8.22;

import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { PRBMathAssertions } from "@prb/math/test/utils/Assertions.sol";
import { Flow } from "src/types/DataTypes.sol";

import { Flow } from "../../src/types/DataTypes.sol";

abstract contract Assertions is PRBMathAssertions {
/*//////////////////////////////////////////////////////////////////////////
Expand Down
Loading