Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Olshansk committed Jan 17, 2025
1 parent aa9cd01 commit 527f150
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/service/keeper/query_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ func TestServiceQuerySingle(t *testing.T) {
{
desc: "KeyNotFound",
request: &types.QueryGetServiceRequest{
Id: strconv.Itoa(100000),
Id: "service",
},
expectedErr: status.Error(codes.NotFound, "service ID not found"),
expectedErr: status.Error(codes.NotFound, "service ID not found: \"service\""),
},
{
desc: "InvalidRequest",
Expand Down

0 comments on commit 527f150

Please sign in to comment.