Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Dunitrust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nodes
rust
Dunitrust
Merge requests
!273
Elois/clippy tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Elois/clippy tests
elois/clippy-tests
into
dev
Overview
0
Commits
2
Pipelines
0
Changes
20
Merged
Éloïs
requested to merge
elois/clippy-tests
into
dev
5 years ago
Overview
0
Commits
2
Pipelines
0
Changes
20
Expand
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
a75dc0e8
2 commits,
5 years ago
20 files
+
106
−
102
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
lib/core/conf/src/keypairs/cli.rs
+
6
−
8
Options
@@ -215,13 +215,13 @@ mod tests {
use
unwrap
::
unwrap
;
static
BASE58_SEED_INIT
:
&
'static
str
=
"4iXXx5GgRkZ85BVPwn8vFXvztdXAAa5yB573ErcAnngA"
;
static
BASE58_PUB_INIT
:
&
'static
str
=
"otDgSpKvKAPPmE1MUYxc3UQ3RtEnKYz4iGD3BmwKPzM"
;
static
BASE58_SEED_INIT
:
&
str
=
"4iXXx5GgRkZ85BVPwn8vFXvztdXAAa5yB573ErcAnngA"
;
static
BASE58_PUB_INIT
:
&
str
=
"otDgSpKvKAPPmE1MUYxc3UQ3RtEnKYz4iGD3BmwKPzM"
;
static
BASE58_SEED_TEST
:
&
'static
str
=
"ELjDWGPyCGMuhr7R7H2aip6UJA9qLRepmK77pcD41UqQ"
;
static
BASE58_PUB_TEST
:
&
'static
str
=
"6sewkaNWyEMqkEa2PVRWrDb3hxWtjPdUSB1zXVCqhdWV"
;
static
SALT_TEST
:
&
'static
str
=
"testsalt"
;
static
PASSWORD_TEST
:
&
'static
str
=
"testpassword"
;
static
BASE58_SEED_TEST
:
&
str
=
"ELjDWGPyCGMuhr7R7H2aip6UJA9qLRepmK77pcD41UqQ"
;
static
BASE58_PUB_TEST
:
&
str
=
"6sewkaNWyEMqkEa2PVRWrDb3hxWtjPdUSB1zXVCqhdWV"
;
static
SALT_TEST
:
&
str
=
"testsalt"
;
static
PASSWORD_TEST
:
&
str
=
"testpassword"
;
fn
setup_user_password_input
()
->
MockUserPasswordInput
{
let
mut
stdin_mock
=
MockUserPasswordInput
::
new
();
@@ -299,7 +299,6 @@ mod tests {
assert_eq!
(
result_key_pairs
.member_keypair
.clone
()
.expect
(
"conf: member_keypair must have a value"
)
.seed
()
.clone
(),
@@ -364,7 +363,6 @@ mod tests {
assert_eq!
(
key_pairs
.member_keypair
.clone
()
.expect
(
"conf: keypair must have a value"
)
.seed
()
.clone
(),
Loading