Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zombienet-sdk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
zombienet-sdk
Commits
4cdcb6b8
Unverified
Commit
4cdcb6b8
authored
1 year ago
by
Nikos Kontakis
Browse files
Options
Downloads
Patches
Plain Diff
fmt
parent
7254f224
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
crates/configuration/src/shared/constants.rs
+1
-1
1 addition, 1 deletion
crates/configuration/src/shared/constants.rs
crates/configuration/src/shared/types.rs
+1
-1
1 addition, 1 deletion
crates/configuration/src/shared/types.rs
with
2 additions
and
2 deletions
crates/configuration/src/shared/constants.rs
+
1
−
1
View file @
4cdcb6b8
...
...
@@ -9,7 +9,7 @@ pub const RW_FAILED: &str = "Should be able to read/write - failed. ";
pub
const
DEFAULT_TYPESTATE
:
&
str
=
"'default' overriding should be ensured by typestate."
;
pub
const
VALIDATION_CHECK
:
&
str
=
"Validation failed. "
;
pub
const
PREFIX_CANT_BE_NONE
:
&
str
=
"Name prefix can't be None if a value exists."
;
pub
const
PREFIX_CANT_BE_NONE
:
&
str
=
"Name prefix can't be None if a value exists."
;
pub
const
THIS_IS_A_BUG
:
&
str
=
"This is a bug please report it: https://github.com/paritytech/zombienet-sdk/issues"
;
This diff is collapsed.
Click to expand it.
crates/configuration/src/shared/types.rs
+
1
−
1
View file @
4cdcb6b8
...
...
@@ -11,7 +11,7 @@ use serde::{de, Deserialize, Deserializer, Serialize};
use
url
::
Url
;
use
super
::{
errors
::
ConversionError
,
resources
::
Resources
};
use
crate
::
shared
::
constants
::{
SHOULD_COMPILE
,
THIS_IS_A_BUG
,
INFAILABLE
,
PREFIX_CANT_BE_NONE
};
use
crate
::
shared
::
constants
::{
INFAILABLE
,
PREFIX_CANT_BE_NONE
,
SHOULD_COMPILE
,
THIS_IS_A_BUG
};
/// An alias for a duration in seconds.
pub
type
Duration
=
u32
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment