Skip to content

Commit

Permalink
Make CI happy without using unknown language
Browse files Browse the repository at this point in the history
  • Loading branch information
melmothx committed Jan 30, 2024
1 parent 2db21df commit 49ca2b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/bookcover.t
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ ok $anon_bc;
$anon_bc->update_from_params({
spinewidth => 15,
font_name => 'TeX Gyre Pagella',
language_code => 'fr',
language_code => 'it',
});
my $outfile = $anon_bc->write_tex_file;
ok $outfile->exists;
my $tex_body = $outfile->slurp_utf8;
like $tex_body, qr{The \\emph\{back\}};
like $tex_body, qr(\\usepackage.*french.*\{babel\});
like $tex_body, qr(\\usepackage.*italian.*\{babel\});
like $tex_body, qr{texgyrepagella};
like $tex_body, qr{includegraphics};
diag $tex_body;
Expand Down

0 comments on commit 49ca2b9

Please sign in to comment.