mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
Rename UpdateYaml to UpdateYamlValue
We are going to add other ways to update yaml documents in the future.
This commit is contained in:
@ -6,7 +6,7 @@ import (
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestUpdateYaml(t *testing.T) {
|
||||
func TestUpdateYamlValue(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
in string
|
||||
@ -53,7 +53,7 @@ func TestUpdateYaml(t *testing.T) {
|
||||
for _, test := range tests {
|
||||
test := test
|
||||
t.Run(test.name, func(t *testing.T) {
|
||||
out, actualErr := UpdateYaml([]byte(test.in), test.path, test.value)
|
||||
out, actualErr := UpdateYamlValue([]byte(test.in), test.path, test.value)
|
||||
if test.expectedErr == "" {
|
||||
assert.NoError(t, actualErr)
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user