Skip to content

Commit dceaaeb

Browse files
committed
More OSS -> CE
1 parent 1e16c5e commit dceaaeb

File tree

13 files changed

+5
-5
lines changed

13 files changed

+5
-5
lines changed

.github/workflows/ce-merge-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
trigger-ce-merge:
15-
# run this only on merge events in OSS repo
15+
# run this only on merge events in CE repo
1616
if: ${{ github.event.pull_request.merged && github.repository == 'hashicorp/consul' }}
1717
runs-on: ubuntu-latest
1818
steps:

api/oss_test.go renamed to api/ce_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
package api
88

9-
// The following defaults return "default" in enterprise and "" in OSS.
9+
// The following defaults return "default" in enterprise and "" in CE.
1010
// This constant is useful when a default value is needed for an
11-
// operation that will reject non-empty values in OSS.
11+
// operation that will reject non-empty values in CE.
1212
const defaultNamespace = ""
1313
const defaultPartition = ""

command/acl/token/formatter_ce_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ import (
1111
)
1212

1313
func TestFormatTokenExpanded(t *testing.T) {
14-
testFormatTokenExpanded(t, "FormatTokenExpanded/oss")
14+
testFormatTokenExpanded(t, "FormatTokenExpanded/ce")
1515
}

command/acl/token/testdata/FormatTokenExpanded/oss/basic.json.golden renamed to command/acl/token/testdata/FormatTokenExpanded/ce/basic.json.golden

File renamed without changes.

command/acl/token/testdata/FormatTokenExpanded/oss/basic.pretty-meta.golden renamed to command/acl/token/testdata/FormatTokenExpanded/ce/basic.pretty-meta.golden

File renamed without changes.

command/acl/token/testdata/FormatTokenExpanded/oss/basic.pretty.golden renamed to command/acl/token/testdata/FormatTokenExpanded/ce/basic.pretty.golden

File renamed without changes.

command/acl/token/testdata/FormatTokenExpanded/oss/complex.json.golden renamed to command/acl/token/testdata/FormatTokenExpanded/ce/complex.json.golden

File renamed without changes.

command/acl/token/testdata/FormatTokenExpanded/oss/complex.pretty-meta.golden renamed to command/acl/token/testdata/FormatTokenExpanded/ce/complex.pretty-meta.golden

File renamed without changes.

command/acl/token/testdata/FormatTokenExpanded/oss/complex.pretty.golden renamed to command/acl/token/testdata/FormatTokenExpanded/ce/complex.pretty.golden

File renamed without changes.

command/operator/autopilot/state/operator_autopilot_state_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func TestStateCommand_JSON(t *testing.T) {
107107

108108
func TestStateCommand_Formatter(t *testing.T) {
109109
cases := []string{
110-
"oss",
110+
"ce",
111111
"enterprise",
112112
}
113113

0 commit comments

Comments
 (0)