Skip to content

Commit

Permalink
#215: class name was ignored so were tests in some parts of CICD (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsulak authored Jun 18, 2024
1 parent 470e091 commit 7193e42
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package za.co.absa.atum.server.api.http

import org.scalatest.flatspec.AnyFlatSpec

class BaseEndpointsUnitTest extends AnyFlatSpec {
class BaseEndpointsUnitTests extends AnyFlatSpec {

object BaseEndpointsForTests extends BaseEndpoints

Expand Down Expand Up @@ -61,7 +61,7 @@ class BaseEndpointsUnitTest extends AnyFlatSpec {

val input = "_create_check_point"
val actual = BaseEndpointsForTests.pathToAPIv1CompatibleFormat(input)
val expected = "createCheckPoint"
val expected = "CreateCheckPoint"
assert(actual == expected)
}

Expand Down

0 comments on commit 7193e42

Please sign in to comment.