Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
Signed-off-by: Nurzhan Sakén <[email protected]>
  • Loading branch information
nxsaken committed Jul 16, 2024
1 parent a48d2f6 commit a10ea1f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/iroha2-dev-pr-wasm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
pull_request:
branches: [main]
paths:
- 'data_model/**.rs'
- 'data_model/**.yml'
- 'data_model/**.json'
- 'data_model/**.toml'
- 'libs/iroha_data_model/**.rs'
- 'libs/iroha_data_model/**.yml'
- 'libs/iroha_data_model/**.json'
- 'libs/iroha_data_model/**.toml'

- 'smart_contract/**.rs'
- 'smart_contract/**.yml'
- 'smart_contract/**.json'
- 'smart_contract/**.toml'
- 'libs/iroha_smart_contract/**.rs'
- 'libs/iroha_smart_contract/**.yml'
- 'libs/iroha_smart_contract/**.json'
- 'libs/iroha_smart_contract/**.toml'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion libs/iroha/tests/ui_fail/cant_filter_singular_query.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ error[E0599]: the method `with_filter` exists for struct `QueryRequestBuilder<'_
| |_________|
|
|
::: $WORKSPACE/data_model/src/query/mod.rs
::: $WORKSPACE/libs/iroha_data_model/src/query/mod.rs
|
| / queries! {
| | /// [`FindAllDomains`] Iroha Query finds all [`Domain`]s presented in Iroha [`Peer`].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ error[E0603]: struct `ClientQueryPayload` is private
| ^^^^^^^^^^^^^^^^^^ private struct
|
note: the struct `ClientQueryPayload` is defined here
--> $WORKSPACE/data_model/src/query/mod.rs
--> $WORKSPACE/libs/iroha_data_model/src/query/mod.rs
|
| pub use self::model::*;
| ^^^^^^^^^^^
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ error[E0599]: the method `filter` exists for struct `FindDomainById`, but its tr
| |_________|
|
|
::: $WORKSPACE/data_model/src/query/mod.rs
::: $WORKSPACE/libs/iroha_data_model/src/query/mod.rs
|
| / queries! {
| | /// [`FindAllDomains`] Iroha Query finds all [`Domain`]s presented in Iroha [`Peer`].
Expand Down
4 changes: 2 additions & 2 deletions libs/iroha_torii/pytests/common/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

load_dotenv()

BASE_DIR = os.path.dirname(
BASE_DIR = os.path.dirname(os.path.dirname(
os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
)
))
CONFIG_DIR = os.path.join(BASE_DIR, "defaults/client.toml")

with open(CONFIG_DIR, "r") as file:
Expand Down

0 comments on commit a10ea1f

Please sign in to comment.