diff options
| author | Vincent Prouillet | 2020-04-12 18:03:19 +0200 | 
|---|---|---|
| committer | Vincent Prouillet | 2020-04-12 18:03:27 +0200 | 
| commit | f125853be305688155eddc22257954e698d935e5 (patch) | |
| tree | 618f8c3bf1163aef484a69aace1e3647a699024b | |
| parent | 905ac6fdbf246a5afd95aad8a3ab1dafbc7b619e (diff) | |
| download | validator-f125853be305688155eddc22257954e698d935e5.tar.bz2 | |
Fix CI
| -rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
| -rw-r--r-- | validator_derive/tests/compile-fail/no_nested_validations.rs | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3212907..8aa2c52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs:          include:          - build: pinned            os: ubuntu-18.04 -          rust: 1.33.0 +          rust: 1.36.0          - build: stable            os: ubuntu-18.04            rust: stable diff --git a/validator_derive/tests/compile-fail/no_nested_validations.rs b/validator_derive/tests/compile-fail/no_nested_validations.rs index 788152d..ec959d9 100644 --- a/validator_derive/tests/compile-fail/no_nested_validations.rs +++ b/validator_derive/tests/compile-fail/no_nested_validations.rs @@ -3,7 +3,7 @@ extern crate validator;  use validator::Validate;  #[derive(Validate)] -//~^ ERROR: no method named `validate` found for type `Nested` in the current scope [E0599] +//~^ ERROR: no method named `validate` found for struct `Nested` in the current scope [E0599]  //~^^ HELP: items from traits can only be used if the trait is implemented and in scope  struct Test {      #[validate] | 
