When I ran check50 on the 'finance' problem, it was failing me for the 'quote' endpoint because it couldn't find '28.00' in the page. This was frustrating, because the prices appeared to be displaying correctly for all the ticker symbols I tried. It took me quite a while to realize I needed to use a format string to enforce two decimal places when the price is a round-number dollar amount. Might be worth explicitly calling out in the instructions, as it's kind of a weird edge case and not very intuitive for a beginner to debug.
When I ran check50 on the 'finance' problem, it was failing me for the 'quote' endpoint because it couldn't find '28.00' in the page. This was frustrating, because the prices appeared to be displaying correctly for all the ticker symbols I tried. It took me quite a while to realize I needed to use a format string to enforce two decimal places when the price is a round-number dollar amount. Might be worth explicitly calling out in the instructions, as it's kind of a weird edge case and not very intuitive for a beginner to debug.