diff --git a/internal/common/ui/commandctrl/cmdpacks/modrs_test.go b/internal/common/ui/commandctrl/cmdpacks/modrs_test.go index 13a2dd7..9d2da35 100644 --- a/internal/common/ui/commandctrl/cmdpacks/modrs_test.go +++ b/internal/common/ui/commandctrl/cmdpacks/modrs_test.go @@ -154,16 +154,16 @@ func TestModRS_Query(t *testing.T) { } } -func TestModRS_Filter(t *testing.T) { +func TestModRS_Hide(t *testing.T) { tests := []struct { descr string cmd string }{ { - descr: "returns filtered items 1", + descr: "returns hidden items 1", cmd: ` rs = rs:scan -table service-test-data - rs = rs:filter $rs 'pk="abc"' + rs = rs:hide $rs 'pk="abc"' assert (len $rs) "expected len == 2" assert (eq $rs.First.pk "abc") "expected First.pk == abc" `,