(t *testing.T, c gh.Config, hostname, username, token, protocol string)
| 762 | } |
| 763 | |
| 764 | func login(t *testing.T, c gh.Config, hostname, username, token, protocol string) { |
| 765 | t.Helper() |
| 766 | _, err := c.Authentication().Login(hostname, username, token, protocol, false) |
| 767 | require.NoError(t, err) |
| 768 | } |
| 769 | |
| 770 | // replaceAll replaces all instances of old with new in s, as well as all instances |
| 771 | // of the JSON-escaped version of old with the JSON-escaped version of new. |
no test coverage detected