Fix typo in cloud backend's TestCloud_setConfigurationFields

This was clearly wrong, but it was also harmless -- in the event of a failing
test due to missing tags, they would get double-reported as both missing and
unexpected. This commit separates out the reporting as intended.
This commit is contained in:
Nick Fagerlund 2023-01-19 18:33:14 -08:00
parent 5ac03755e7
commit acf7314587

View File

@ -814,7 +814,7 @@ func TestCloud_setConfigurationFields(t *testing.T) {
for _, actual := range b.WorkspaceMapping.Tags {
if _, ok := expectedSet[actual]; !ok {
unexpected = append(missing, actual)
unexpected = append(unexpected, actual)
}
}