Skip to content

Commit

Permalink
fix project config test path
Browse files Browse the repository at this point in the history
  • Loading branch information
mintyleaf committed Jan 24, 2025
1 parent 3e62ec8 commit 1455ebe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/reflexia/reflexia_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestGetProjectConfig(t *testing.T) {
"Project language .toml config",
func(t *testing.T) {
projectConfigVariants, err := project.GetProjectConfig(
"temp/JackBekket/GitHelper", "", false,
"temp/root_branch/JackBekket/GitHelper", "", false,
)
if err != nil {
t.Fatal(err)
Expand All @@ -85,7 +85,7 @@ func TestBuildPackageFiles(t *testing.T) {
"Project package files",
func(t *testing.T) {
projectConfigVariants, err := project.GetProjectConfig(
"temp/JackBekket/GitHelper", "", false,
"temp/root_branch/JackBekket/GitHelper", "", false,
)
if err != nil {
t.Fatal(err)
Expand Down Expand Up @@ -119,7 +119,7 @@ func TestLLMResponse(t *testing.T) {
helper_url, model, apiToken := checkLoadLLMConfig(t)

projectConfigVariants, err := project.GetProjectConfig(
"temp/JackBekket/GitHelper", "", false,
"temp/root_branch/JackBekket/GitHelper", "", false,
)
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit 1455ebe

Please sign in to comment.