Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FIT-Connect-SDK - Java
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIT-Connect
FIT-Connect-SDK - Java
Merge requests
!117
Feature/808 validate root certificates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/808 validate root certificates
feature/808-validate_root_certificates
into
main
Overview
12
Commits
28
Pipelines
0
Changes
1
6 unresolved threads
Hide all comments
Merged
Henry Borasch
requested to merge
feature/808-validate_root_certificates
into
main
2 years ago
Overview
12
Commits
28
Pipelines
0
Changes
1
6 unresolved threads
Hide all comments
Expand
0
0
Merge request reports
Viewing commit
40c7d11f
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
40c7d11f
fixed test
· 40c7d11f
Henry Borasch
authored
2 years ago
core/src/test/java/dev/fitko/fitconnect/core/validation/DefaultValidationServiceTest.java
+
1
−
1
Options
@@ -168,7 +168,7 @@ class DefaultValidationServiceTest {
// Then
assertTrue
(
validationResult
.
hasError
());
assertThat
(
validationResult
.
getError
().
getMessage
(),
containsString
(
"
\"x5c\" is null
"
));
assertThat
(
validationResult
.
getError
().
getMessage
(),
containsString
(
"
Root certificates value cannot be null or empty
"
));
}
Loading