From a157dbd772171400c027e4a0f2016fa999caa68e Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Mon, 20 Jul 2026 16:24:05 +0800 Subject: [PATCH 1/2] test(http-client-java): enable QueryTests dollar-sign test The @typespec/http-specs dollar-sign route fix is now published (0.1.0-alpha.38), so testDollarSign passes against the mock server. Remove the @Disabled annotation. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: a10e9989-905e-4380-a221-01c04f4da1f7 --- .../src/test/java/parameters/query/QueryTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/http-client-java/generator/http-client-generator-clientcore-test/src/test/java/parameters/query/QueryTests.java b/packages/http-client-java/generator/http-client-generator-clientcore-test/src/test/java/parameters/query/QueryTests.java index 8f512938876..1186273a2b0 100644 --- a/packages/http-client-java/generator/http-client-generator-clientcore-test/src/test/java/parameters/query/QueryTests.java +++ b/packages/http-client-java/generator/http-client-generator-clientcore-test/src/test/java/parameters/query/QueryTests.java @@ -3,7 +3,6 @@ package parameters.query; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; public class QueryTests { @@ -17,7 +16,6 @@ public void testConstant() { } @Test - @Disabled("Blocked until @typespec/http-specs publishes the dollar-sign route fix") public void testDollarSign() { specialCharClient.dollarSign("status eq 'active'"); } From b1ba23062ec2e0adc5fd605746cab8d46c8599b9 Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Mon, 20 Jul 2026 16:29:21 +0800 Subject: [PATCH 2/2] chore: add changelog entry for enabling QueryTests dollar-sign test Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: a10e9989-905e-4380-a221-01c04f4da1f7 --- ...lient-java-enable-query-dollarsign-2026-7-20-16-28-0.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .chronus/changes/http-client-java-enable-query-dollarsign-2026-7-20-16-28-0.md diff --git a/.chronus/changes/http-client-java-enable-query-dollarsign-2026-7-20-16-28-0.md b/.chronus/changes/http-client-java-enable-query-dollarsign-2026-7-20-16-28-0.md new file mode 100644 index 00000000000..ac5f4797e79 --- /dev/null +++ b/.chronus/changes/http-client-java-enable-query-dollarsign-2026-7-20-16-28-0.md @@ -0,0 +1,7 @@ +--- +changeKind: internal +packages: + - "@typespec/http-client-java" +--- + +Enable the `parameters.query.QueryTests` dollar-sign test in the clientcore test module now that the `@typespec/http-specs` dollar-sign route fix is published.