diff --git a/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md
index 9db65221b38..b658430964c 100644
--- a/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md
+++ b/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md
@@ -18,9 +18,9 @@ localeTitle: Crear una consulta de medios
```yml
tests:
- text: Su elemento p debe tener el font-size de font-size de 10 px cuando la height del dispositivo sea menor o igual a 800 px.
- testString: 'assert($("p").css("font-size") == "10px", "Your p element should have the font-size of 10px when the device height is less than or equal to 800px.");'
+ testString: 'assert($("p").css("font-size") == "10px", "Su elemento p debe tener el font-size de font-size de 10 px cuando la height del dispositivo sea menor o igual a 800 px.");'
- text: Declare una consulta @media para dispositivos con una height menor o igual a 800px.
- testString: 'assert(code.match(/@media\s*?\(\s*?max-height\s*?:\s*?800px\s*?\)/g), "Declare a @media query for devices with a height less than or equal to 800px.");'
+ testString: 'assert(code.match(/@media\s*?\(\s*?max-height\s*?:\s*?800px\s*?\)/g), "Declare una consulta @media para dispositivos con una height menor o igual a 800px.");'
```