We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666d946 commit fe5bb4aCopy full SHA for fe5bb4a
platforms/platforms_test.go
@@ -87,7 +87,7 @@ func TestParseSelector(t *testing.T) {
87
OS: defaultOS,
88
Architecture: "arm",
89
},
90
- formatted: "linux/arm",
+ formatted: joinNotEmpty(defaultOS, "arm"),
91
92
{
93
input: "armel",
@@ -96,15 +96,15 @@ func TestParseSelector(t *testing.T) {
96
97
Variant: "v6",
98
99
- formatted: "linux/arm/v6",
+ formatted: joinNotEmpty(defaultOS, "arm/v6"),
100
101
102
input: "armhf",
103
expected: specs.Platform{
104
105
106
107
108
109
110
input: "Aarch64",
0 commit comments