Diagnosing a problem (lesson 7.1) tells you what to change. It doesn't tell you whether the change actually worked. That second question — did this get better — is only answerable if you're judging "better" the same way before and after the change. This lesson is about the discipline that makes adjustment meaningful: holding your test cases and your criteria for success constant while the thing you're testing changes.
This sounds obvious stated plainly, but it's one of the easiest disciplines to abandon under real deadline pressure, because a single good-looking result feels like enough evidence to move on. It usually isn't.
Why Consistent Measurement Is What Makes Adjustment Meaningful
If you change the test inputs, the grading criteria, or what counts as a "good" output between one version of a prompt or workflow and the next, you can no longer tell whether an apparent improvement reflects the actual change you made or just a difference in how that particular run happened to be judged. Measuring with the same test cases and the same criteria consistently across a comparison is what allows a performance difference to be attributed to the change itself, rather than to a shift in how each version was evaluated. Without that consistency, an apparent improvement — or an apparent regression — might be nothing more than an artifact of testing on an easier input the second time, or grading more leniently because you already expected the new version to be better.
The Trap of One Anecdotally Good Result
A common and tempting failure pattern: you adjust a prompt, run it once against a single input, the output looks noticeably better than you remember the old one being, and you declare the problem solved. This is weak evidence. It's entirely possible the new version happens to do well on that one input and no better — or actually worse — on the range of inputs the workflow needs to handle in practice. A single anecdotal win tells you the change can help; it doesn't tell you the change reliably helps across the cases that matter.
The fix is small and doesn't require formal tooling: keep a short, fixed list of representative test cases (three to five is often enough for a lightweight check) and a simple, consistently-applied rule for what counts as acceptable on each. Run both the old and new version against that same fixed list, applying the same rule, before deciding the adjustment actually helped. If a borderline case comes up mid-comparison, resist the urge to loosen or tighten the rule on the spot — note the ambiguity and apply the same standard to both versions anyway, or the comparison stops being fair.
Key Concept
Before adjusting a prompt or workflow based on feedback, fix a small, consistent set of test cases and a consistent standard for success. Compare the old and new versions against that exact same set. This is what turns "this looks better" into "this is actually better," and it's the difference between a real adjustment and an anecdote.
Common Exam Distractor
An answer suggesting you refresh or vary the test inputs each time you check a new version — "to keep things realistic" — sounds reasonable in isolation but breaks the comparison. Changing what you're testing against between versions makes it impossible to know whether a score changed because the prompt changed or because the test changed. Test-set changes should happen deliberately between full evaluation cycles, not casually mid-comparison. Also watch for answers that treat a single good-looking run as sufficient evidence that an adjustment worked.