Skip to content

Commit

Permalink
Fix resource paths
Browse files Browse the repository at this point in the history
  • Loading branch information
shinyhappydan committed Nov 21, 2023
1 parent 3a71e95 commit 968ad82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AppConfigSpec extends CatsEffectSpec with BeforeAndAfterAll {

"AppConfig" should {

val externalConfigPath = loader.absolutePath("/config/external.conf").accepted
val externalConfigPath = loader.absolutePath("config/external.conf").accepted

"load conf" in {
val (conf, _) = AppConfig.load().accepted
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class BlazegraphClientSpec(docker: BlazegraphDocker)
}

"attempt to create a namespace with wrong payload" in {
val props = propertiesOf("/sparql/wrong.properties")
val props = propertiesOf("sparql/wrong.properties")
val err = client.createNamespace("other", props).rejectedWith[WrappedHttpClientError]
err.http shouldBe a[HttpServerStatusError]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class ProjectsSpec extends BaseIntegrationSpec with OpticsValidators {
val vocabRev2 = s"${config.deltaUri.toString()}/${genString()}/"
val updateRev2Json = adminDsl
.projectPayload(
"/admin/projects/update.json",
"admin/projects/update.json",
"nxv",
"person",
description = descRev2,
Expand All @@ -159,7 +159,7 @@ class ProjectsSpec extends BaseIntegrationSpec with OpticsValidators {
val vocabRev3 = s"${config.deltaUri.toString()}/${genString()}/"
val updateRev3Json = adminDsl
.projectPayload(
"/admin/projects/update.json",
"admin/projects/update.json",
"nxv",
"person",
description = descRev3,
Expand Down

0 comments on commit 968ad82

Please sign in to comment.