Skip to content

Commit

Permalink
escapa gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
vtamara committed Feb 19, 2024
1 parent 50a2836 commit 2fce604
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ test:
- bin/rails msip:stimulus_motores
- RAILS_ENV=test bin/rails assets:precompile
- yarn add -D puppeteer
- for i in `find ./test -name "*js" -type f -exec grep -l "puppeteer-core" {} ';'`; do echo "Remplazando p-c por p en $i"; sed -i -e 's/preparar,//g;import puppeteer from \"puppeteer-core\"/import puppeteer from \"puppeteer\";\nimport {preparar} from \"./pgitlab.mjs\";/g' $i; cat $i; done
- for i in `find ./test -name "*js" -type f -exec grep -l "puppeteer-core" {} ';'`; do echo "Remplazando p-c por p en $i"; sed -i -e 's/preparar,//g;import puppeteer from \"puppeteer-core\"/import puppeteer from \"puppeteer\";\nimport {preparar} from \".\/pgitlab.mjs\";/g' $i; cat $i; done
- cd ../..
script:
- bin/regresion.sh
Expand Down
8 changes: 4 additions & 4 deletions test/dummy/db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -920,11 +920,11 @@ UNION
--

CREATE MATERIALIZED VIEW public.msip_mundep AS
SELECT msip_mundep_sinorden.idlocal,
msip_mundep_sinorden.nombre,
to_tsvector('spanish'::regconfig, public.unaccent(msip_mundep_sinorden.nombre)) AS mundep
SELECT idlocal,
nombre,
to_tsvector('spanish'::regconfig, public.unaccent(nombre)) AS mundep
FROM public.msip_mundep_sinorden
ORDER BY (msip_mundep_sinorden.nombre COLLATE public.es_co_utf_8)
ORDER BY (nombre COLLATE public.es_co_utf_8)
WITH NO DATA;


Expand Down

0 comments on commit 2fce604

Please sign in to comment.