Skip to content

Commit

Permalink
Rename 'Data' section to 'Date et Intelligence Artificielle'
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelbernard authored and marcwrobel committed Nov 27, 2023
1 parent 4e65f97 commit 55d21f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Changed

- Update _Data_ section title to _Data et Intelligence Artificielle_.

### Fixed

- Fix conferences retrieval (#161).
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/show-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Téléchargement de l’épisode [LesCastCodeurs-Episode-{episodeNumber}.mp3](ht
{/if}

{#if hasNotes('DATA')}
### Data
### Data et Intelligence Artificielle

{#for note in notes('DATA')}
{note.text}
Expand Down
3 changes: 2 additions & 1 deletion src/test/java/com/lescastcodeurs/bot/ShowNotesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ void generateWithNotesAndConferences() {
assertContains(
rendered, "### Web\n\n[https://lescastcodeurs.com/WEB](https://lescastcodeurs.com/WEB)");
assertContains(
rendered, "### Data\n\n[https://lescastcodeurs.com/DATA](https://lescastcodeurs.com/DATA)");
rendered,
"### Data et Intelligence Artificielle\n\n[https://lescastcodeurs.com/DATA](https://lescastcodeurs.com/DATA)");
assertContains(
rendered,
"### Outillage\n\n[https://lescastcodeurs.com/TOOLING](https://lescastcodeurs.com/TOOLING)");
Expand Down

0 comments on commit 55d21f9

Please sign in to comment.