Skip to content

Commit

Permalink
chore(test): remove unused code and adjust workflow platform versions
Browse files Browse the repository at this point in the history
Removed an unused assertEquals line in CodeUtilTest.kt and updated the release workflow to remove an older platform version.
  • Loading branch information
phodal committed Dec 11, 2024
1 parent b0cc99a commit 05e849c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
platform-version: [ 222, 233, 241 ]
platform-version: [233, 241 ]
env:
ORG_GRADLE_PROJECT_platformVersion: ${{ matrix.platform-version }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class CodeUtilTest {

val code = Code.parse(markdown)

// assertEquals(code.language.id, "java")
assertEquals(
code.text, """
|public class HelloWorld {
Expand Down

0 comments on commit 05e849c

Please sign in to comment.