Skip to content

Commit

Permalink
test: supports execution of a single test method (#276)
Browse files Browse the repository at this point in the history
Co-authored-by: fx0x55 <80245546+fx0x55@users.noreply.github.com>
  • Loading branch information
zakir-code and fx0x55 authored Mar 21, 2024
1 parent a1c878e commit 62881ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/crosschain/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func TestCrosschainKeeperTestSuite(t *testing.T) {
if !compile.MatchString(method.Name) {
continue
}
t.Run(fmt.Sprintf("%s/%s", moduleName, method.Name), func(subT *testing.T) {
t.Run(fmt.Sprintf("%s/%s", method.Name, moduleName), func(subT *testing.T) {
mySuite := &KeeperTestSuite{chainName: moduleName}
mySuite.SetT(subT)
mySuite.SetupTest()
Expand Down

0 comments on commit 62881ec

Please sign in to comment.