@typespec/protobuf 0.75.0-dev.0 → 0.76.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -129,7 +129,7 @@ describe("protobuf scenarios", function () {
129
129
  */
130
130
  function removeCoreDiagnostics(diagnostics: string[]): string[] {
131
131
  return diagnostics.map((d) => {
132
- if (d.startsWith("/test/.tsp")) {
132
+ if (d.startsWith("/test/node_modules/@typespec/compiler/")) {
133
133
  return d.replace(/^[^\s]*:[0-9]+:[0-9]+ - /, "<in core> - ");
134
134
  } else return d;
135
135
  });