Test_policy is failing

Hello @still-lender

That seems now to be a problem beetwen your commit message and the path, because if you see this:

image

the commit_title is 47 and the path that you created has a different name.

You should use the ID on the commit and path if the challenge has an ID, if not use the name instead in both.

example:

for rootme the challenges uses ID and the paths will be:

  • commit:
    sol(hack): #0 rootme, <ID> (<complexity>)
    sol(hack): #0 rootme, 001 (20)

  • path:
    hack/rootme/<ID>/<username>.feature
    hack/rootme/001/pastel.feature

for hackthebox could looks like:

  • commit:
    sol(hack): #0 hackthebox, <challenge/machine> (<complexity>)
    sol(hack): #0 hackthebox, matrix (medium)

  • path:
    hack/hackthebox/<challenge/machine>/<username>.feature
    hack/hackthebox/matrix/pastel.feature

Knowing that you can fix your challenge and try again.