Fix Windows test failure by replacing angle bracket placeholders#2950
Merged
adamtheturtle merged 1 commit intomainfrom Feb 18, 2026
Merged
Fix Windows test failure by replacing angle bracket placeholders#2950adamtheturtle merged 1 commit intomainfrom
adamtheturtle merged 1 commit intomainfrom
Conversation
…file The example env file used angle bracket placeholders (e.g., <DATABASE_NAME>) which were causing Windows tests to fail. When these placeholder values were URL-encoded in the VuMark test, the < and > characters became %3C and %3E, which didn't match the mock's [A-Za-z0-9]+ URL pattern. Replacing all placeholders with descriptive alphanumeric examples fixes this issue while maintaining clarity about what each value represents. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replace angle bracket placeholders in the example env file with alphanumeric examples. The Windows tests were failing because placeholder values like
<VUMARK_TARGET_ID>were being URL-encoded to%3CVUMARK_TARGET_ID%3E, which didn't match the mock's[A-Za-z0-9]+URL pattern.Test plan
test_generate_instance_success[In Memory Mock Vuforia]should no longer fail with "Connection refused by Responses"🤖 Generated with Claude Code
Note
Low Risk
Low risk documentation/config-example change only; it updates sample env values to avoid Windows URL-encoding edge cases in tests.
Overview
Updates
vuforia_secrets.env.exampleto replace angle-bracket placeholder values (e.g.<...>) with alphanumeric example strings for all Vuforia keys/IDs, including inactive and VuMark entries, preventing placeholder URL-encoding from breaking Windows-based tests.Written by Cursor Bugbot for commit 7f0bd30. This will update automatically on new commits. Configure here.