Skip to content

Commit

Permalink
refactor: update MESSAGES regex to match new format
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-gang committed Sep 28, 2024
1 parent 4d163cc commit 1a0b23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/stages_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func normalizeTesterOutput(testerOutput []byte) []byte {
"name": {regexp.MustCompile(`- .name \([A-Za-z]{1,}\)`)},
"topic_name": {regexp.MustCompile(`- .topic_name \([A-Za-z0-9 ]{1,}\)`)},
"next_cursor": {regexp.MustCompile(`- .next_cursor \(\{[A-Za-z0-9 ]{1,}\}\)`)},
"MESSAGES": {regexp.MustCompile(`✓ MESSAGES: \["[A-Za-z !]{1,}"\]`)},
"MESSAGES": {regexp.MustCompile(`✓ Messages: \["[A-Za-z !]{1,}"\]`)},
}

for replacement, regexes := range replacements {
Expand Down

0 comments on commit 1a0b23a

Please sign in to comment.