fix(postgres): removed unneeded code that breaks the thing

Signed-off-by: soxx <soxx@fenpa.ws>
This commit is contained in:
SoXX 2024-06-21 14:36:38 +02:00
parent 40ce69567a
commit d4bec1d8c7
2 changed files with 3 additions and 8 deletions

View File

@ -2,7 +2,6 @@ package postgres
import (
"context"
"fmt"
"git.dragse.it/anthrove/otter-space-sdk/pkg/models"
"git.dragse.it/anthrove/otter-space-sdk/pkg/models/pgModels"
log "github.com/sirupsen/logrus"
@ -65,10 +64,6 @@ func CheckUserToPostLink(ctx context.Context, db *gorm.DB, anthroveUserID models
exists := count > 0
if !exists {
return false, fmt.Errorf("no post link exists")
}
log.WithFields(log.Fields{
"relationship_exists": exists,
"relationship_anthrove_user_id": anthroveUserID,

View File

@ -240,7 +240,7 @@ func TestCheckUserToPostLink(t *testing.T) {
anthrovePostID: "123456",
},
want: false,
wantErr: true,
wantErr: false,
},
{
name: "Test 3: Valid AnthrovePostID and invalid AnthroveUserID",
@ -251,7 +251,7 @@ func TestCheckUserToPostLink(t *testing.T) {
anthrovePostID: "1234",
},
want: false,
wantErr: true,
wantErr: false,
},
{
name: "Test 4: Invalid AnthrovePostID and invalid AnthroveUserID",
@ -262,7 +262,7 @@ func TestCheckUserToPostLink(t *testing.T) {
anthrovePostID: "123456",
},
want: false,
wantErr: true,
wantErr: false,
},
}
for _, tt := range tests {