From f125853be305688155eddc22257954e698d935e5 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Sun, 12 Apr 2020 18:03:19 +0200 Subject: Fix CI --- .github/workflows/ci.yml | 2 +- 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] -- cgit v1.2.3