Fix wording/typo in lc spec tests (#15307)

* fix wording

* changelog
This commit is contained in:
Bastin
2025-05-21 13:02:45 +02:00
committed by GitHub
parent e2f0b057b0
commit b20821dd8e
2 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
### Ignored
- Rename the `runLightClientUpdateRankingProofTest` function to `runLightClientUpdateRankingTest` in lc spec tests.

View File

@@ -35,11 +35,11 @@ func RunLightClientUpdateRankingTests(t *testing.T, config string, v int) {
_, testsFolderPath = utils.TestFolders(t, config, version.String(v), "light_client/update_ranking/pyspec_tests/update_ranking")
helpers.ClearCache()
t.Run("update ranking", func(t *testing.T) {
runLightClientUpdateRankingProofTest(t, testsFolderPath, v)
runLightClientUpdateRankingTest(t, testsFolderPath, v)
})
}
func runLightClientUpdateRankingProofTest(t *testing.T, testFolderPath string, v int) {
func runLightClientUpdateRankingTest(t *testing.T, testFolderPath string, v int) {
metaFile, err := util.BazelFileBytes(path.Join(testFolderPath, "meta.yaml"))
require.NoError(t, err)
var meta struct {