diff options
author | Jim Hahn <jrh3@att.com> | 2020-06-29 10:16:44 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-06-29 11:09:58 -0400 |
commit | ff0842117fba4dfe675a8b87af3a1098cde023bd (patch) | |
tree | 1dde66fc3323e9bb3edec8bf83df1456cbf6fffd /policy-endpoints/src/test/resources/webapps | |
parent | 4cdfdf4fa218a3b4f7e9690355db85976bc1888d (diff) |
Fix issues in common for new sonar rules
Addressed issues reported due to updates to the sonar rules:
- invoke only one method in a junit lambda
- complete the assertion
- add DOCTYPE to html
Issue-ID: POLICY-2650
Change-Id: Ib8b8a2e4736cc23849c0f7aef972ffa3365a3e00
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'policy-endpoints/src/test/resources/webapps')
-rw-r--r-- | policy-endpoints/src/test/resources/webapps/alt-root/index.html | 4 | ||||
-rw-r--r-- | policy-endpoints/src/test/resources/webapps/root/index.html | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/policy-endpoints/src/test/resources/webapps/alt-root/index.html b/policy-endpoints/src/test/resources/webapps/alt-root/index.html index 0948cebd..8ef757e6 100644 --- a/policy-endpoints/src/test/resources/webapps/alt-root/index.html +++ b/policy-endpoints/src/test/resources/webapps/alt-root/index.html @@ -1,6 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2020 Nordix Foundation. + Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -18,6 +19,7 @@ ============LICENSE_END========================================================= --> +<?xml !DOCTYPE html> <html> <head> <title>Hello World</title> @@ -25,4 +27,4 @@ <body> <h4>Test Jetty Static Resources Alt-Root</h4> </body> -</html>
\ No newline at end of file +</html> diff --git a/policy-endpoints/src/test/resources/webapps/root/index.html b/policy-endpoints/src/test/resources/webapps/root/index.html index a7cc120b..35f61013 100644 --- a/policy-endpoints/src/test/resources/webapps/root/index.html +++ b/policy-endpoints/src/test/resources/webapps/root/index.html @@ -1,6 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2020 Nordix Foundation. + Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -18,6 +19,7 @@ ============LICENSE_END========================================================= --> +<?xml !DOCTYPE html> <html> <head> <title>Hello World</title> @@ -25,4 +27,4 @@ <body> <h4>Test Jetty Static Resources Root</h4> </body> -</html>
\ No newline at end of file +</html> |