### terraform-plugin-testing version <!--- Inspect your go.mod as below to find the version, and paste the result between the ``` marks below. go list -m github.com/hashicorp/terraform-plugin-testing/... If you are not running the latest version of terraform-plugin-testing, please try upgrading because your bug may have already been fixed. --> ``` github.com/hashicorp/terraform-plugin-testing v1.11.0 ``` ### Relevant provider source code <!-- Paste any Go code that you believe to be relevant to the bug When in doubt, a minimal reproduction is best --> ```go plancheck.ExpectUnknownValue(resourceName, tfjsonpath.New(names.AttrRule).AtSliceIndex(0).AtMapKey("prefix")) ``` ### Expected Behavior The test failure message should indicate something like > Expected unknown value for 'rule[0].prefix', but had known value "prefix". ### Actual Behavior The test failure message is > path not found: specified key prefix not found in map at rule.0.prefix ### Steps to Reproduce 1. Run an acceptance test with a `plancheck.ExpectUnknownValue` where the plan returns a known value