Skip to content

Commit

Permalink
Fix teste t/api/058-anon-quiz.t (tirar o floor da query pra resolver …
Browse files Browse the repository at this point in the history
…flaky)
  • Loading branch information
renatocron committed Mar 15, 2024
1 parent abc748c commit c1d1ca9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 2 additions & 3 deletions api/lib/Penhas/Helpers/PontoApoio.pm
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,7 @@ sub ponto_apoio_list {
# (com fallback para o CEP da pessoa caso não tenha esteja dentro do local)
# Regional sempre filtrar por 50km (e não filtrar por estado)

my $distance_in_km_where = $max_distance >= 5000 ? undef : defined $latitude
? qq|
my $distance_in_km_where = $max_distance >= 5000 ? undef : defined $latitude ? qq|
CASE WHEN abrangencia = 'Nacional' THEN (TRUE)
WHEN abrangencia = 'Regional' THEN ( cod_ibge = '$user_cod_ibge'::int OR '$user_cod_ibge'::int = -1 )
ELSE
Expand All @@ -278,7 +277,7 @@ sub ponto_apoio_list {
my $distance_in_km_column = defined $latitude
? qq| CASE
WHEN abrangencia = 'Nacional' THEN -0.0001
ELSE floor(ST_Distance(me.geog, ST_SetSRID(ST_MakePoint( $longitude , $latitude ), 4326)::geography ) / 1000 )
ELSE ST_Distance(me.geog, ST_SetSRID(ST_MakePoint( $longitude , $latitude ), 4326)::geography ) / 1000.0
END |
: '';

Expand Down
5 changes: 4 additions & 1 deletion api/t/api/058-anon-quiz.t
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ sub insert_ponto_apoio {
status => 'test',
}
);
$cat1o->ponto_apoio_categoria2projetos->create({ponto_apoio_projeto_id => $proj->id});

# parece não existir mais
#$cat1o->ponto_apoio_categoria2projetos->create({ponto_apoio_projeto_id => $proj->id});

my $fields = {
'sigla' => 'UPPER',
Expand All @@ -214,6 +216,7 @@ sub insert_ponto_apoio {
'eh_24h' => 0,
'dias_funcionamento' => 'fds',
'observacao_pandemia' => 'nao sei',
'abrangencia' => 'Local',
cliente_id => undef,
test_status => 'test',
ja_passou_por_moderacao => '1',
Expand Down

0 comments on commit c1d1ca9

Please sign in to comment.