We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485ae67 commit 58f0ca4Copy full SHA for 58f0ca4
1 file changed
internal/pkg/mapper/relations/link_test.go
@@ -152,7 +152,7 @@ func TestRelationsMapperVariablesSharedAcrossConsumers(t *testing.T) {
152
// linkRelations(valuesRow) from adding a VariablesValuesFromRelation to any consumer.
153
// consumer1 retains its original single VariablesValuesFromRelation (no duplicate was
154
// added from the values-row side), and consumer2 has none at all.
155
- assert.Equal(t, 1, len(consumer1.Remote.Relations.GetByType(model.VariablesValuesFromRelType)))
+ assert.Len(t, consumer1.Remote.Relations.GetByType(model.VariablesValuesFromRelType), 1)
156
assert.Empty(t, consumer2.Remote.Relations.GetByType(model.VariablesValuesFromRelType))
157
158
// AfterLocalOperation is structurally identical to AfterRemoteOperation (same two-pass
0 commit comments