aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--validator_derive/tests/compile-fail/no_nested_validations.rs2
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]