Skip to content

Commit 6f74416

Browse files
fix texts
Signed-off-by: Marvin Frommhold <[email protected]>
1 parent 9bc2d6e commit 6f74416

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Standards/scs-0114-w1-volume-type-implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "SCS Volume Types: Testing Notes"
2+
title: "SCS Volume Types: Implementation and Testing Notes"
33
type: Supplement
44
track: IaaS
55
status: Draft

Tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Options:
7272
-s/--subject SUBJECT: Name of the subject (cloud) under test, for the report
7373
-S/--sections SECTION_LIST: comma-separated list of sections to test (default: all sections)
7474
-t/--tests REGEX: regular expression to select individual testcases based on their ids
75-
-o/--output REPORT_PATH: Generate yaml report of compliance check under given path
75+
-o/--output REPORT_FILE: Generate yaml report of compliance check in given file
7676
-C/--critical-only: Only return critical errors in return code
7777
-a/--assign KEY=VALUE: assign variable to be used for the run (as required by yaml file)
7878

Tests/iaas/scs_0123_mandatory_services/mandatory_services.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def compute_scs_0123_swift_s3(conn: openstack.connection.Connection):
120120
It will abort with an exception if no service of type object-storage is present. As of now, we deem
121121
this behavior adequate.
122122
"""
123-
# we assume s3 is accessable via the service catalog, and Swift might exist too
123+
# we assume s3 is accessible via the service catalog, and Swift might exist too
124124
usable_credentials = []
125125
s3_buckets = []
126126
# Get S3 endpoint (swift) and ec2 creds from OpenStack (keystone)
@@ -145,7 +145,7 @@ def compute_scs_0123_swift_s3(conn: openstack.connection.Connection):
145145
if s3_buckets == sw_containers:
146146
return True
147147
logger.error(
148-
"S3 buckets and Swift cntainers differ:\n"
148+
"S3 buckets and Swift containers differ:\n"
149149
f"S3: {s3_buckets}\n"
150150
f"SW: {sw_containers}"
151151
)

Tests/scs-compliance-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def usage(file=sys.stdout):
5353
-s/--subject SUBJECT: Name of the subject (cloud) under test, for the report
5454
-S/--sections SECTION_LIST: comma-separated list of sections to test (default: all sections)
5555
-t/--tests REGEX: regular expression to select individual testcases based on their ids
56-
-o/--output REPORT_PATH: Generate yaml report of compliance check under given path
56+
-o/--output REPORT_FILE: Generate yaml report of compliance check in given file
5757
-C/--critical-only: Only return critical errors in return code
5858
-a/--assign KEY=VALUE: assign variable to be used for the run (as required by yaml file)
5959

0 commit comments

Comments
 (0)