fix aliasing

This commit is contained in:
Shreyas Goenka 2025-01-06 18:58:45 +05:30
parent 38d47e62f2
commit ad28ce1d37
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 1 additions and 1 deletions

View File

@ -88,5 +88,5 @@ func TestTemplateGet(t *testing.T) {
} }
// Assert the alias works. // Assert the alias works.
assert.Equal(t, Get(TemplateName("mlops-stack")).name, MlopsStacks) assert.Equal(t, MlopsStacks, Get(TemplateName("mlops-stack")).name)
} }