From 06cc5225acf4025eba8c7025ec079d77b4a2d931 Mon Sep 17 00:00:00 2001 From: Chantal Date: Wed, 8 Oct 2025 17:01:50 +0100 Subject: [PATCH 1/2] initial commit --- main.ipynb | 233 ++++++++++++++++++++---- mod/__pycache__/testing.cpython-313.pyc | Bin 0 -> 20249 bytes 2 files changed, 196 insertions(+), 37 deletions(-) create mode 100644 mod/__pycache__/testing.cpython-313.pyc diff --git a/main.ipynb b/main.ipynb index b05630a..94aee11 100644 --- a/main.ipynb +++ b/main.ipynb @@ -20,7 +20,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "metadata": {}, "outputs": [], "source": [ @@ -37,33 +37,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 52, "metadata": {}, "outputs": [], "source": [ "def greater(a,b):\n", + " if a > b:\n", + " return a\n", + " else:\n", + " return b\n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.234s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_greater(greater)" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#your code here" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -73,18 +80,54 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ + "def greatest(lista):\n", + " greatest = lista[0]\n", + " for element in lista:\n", + " if element > greatest:\n", + " greatest = element\n", + " return greatest\n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 38, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n" + ] + } + ], + "source": [ + "lista = [8, 10, 3]\n", + "print(greatest(lista))" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.137s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_greatest(greatest)" @@ -99,21 +142,55 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 72, "metadata": {}, "outputs": [], "source": [ - "def sum_all(lst):\n", + "def sum_all(lista):\n", + " total = 0\n", + " for element in lista:\n", + " total += element\n", + " return total\n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "21\n" + ] + } + ], + "source": [ + "lista = [8, 10, 3]\n", + "print(sum_all(lista))" + ] + }, + { + "cell_type": "code", + "execution_count": 74, "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.345s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_sum(sum_all)" @@ -128,21 +205,63 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 69, "metadata": {}, "outputs": [], "source": [ - "def mult_all(lst):\n", + "def mult_all(lista):\n", + " product = 1\n", + " for element in lista:\n", + " product *= element\n", + " return product\n", + " \n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "240\n" + ] + } + ], + "source": [ + "lista = [8, 10, 3]\n", + "print(mult_all(lista))" + ] + }, + { + "cell_type": "code", + "execution_count": 71, "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "................................................................" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.262s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_mult(mult_all)" @@ -157,19 +276,41 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 67, "metadata": {}, "outputs": [], "source": [ "def oper_all(arr, oper = \"*\"):\n", + " if oper == '+':\n", + " result = 0\n", + " for element in arr:\n", + " result += element\n", + " return result\n", + " elif oper == '*':\n", + " result = 1\n", + " for element in arr:\n", + " result *= element\n", + " return result\n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.270s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_operations(oper_all)" @@ -184,14 +325,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 63, "metadata": {}, "outputs": [], "source": [ "def factorial(n):\n", + " result = 1\n", + " for x in range (1, n + 1):\n", + " result *= x\n", + " return result\n", + " \n", "#your code here" ] }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "120\n" + ] + } + ], + "source": [ + "print(factorial(5))" + ] + }, { "cell_type": "code", "execution_count": null, @@ -237,6 +400,7 @@ "outputs": [], "source": [ "def unique(lst_un):\n", + " \n", "#your code here" ] }, @@ -392,7 +556,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "base", "language": "python", "name": "python3" }, @@ -406,12 +570,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.13" - }, - "vscode": { - "interpreter": { - "hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49" - } + "version": "3.13.5" } }, "nbformat": 4, diff --git a/mod/__pycache__/testing.cpython-313.pyc b/mod/__pycache__/testing.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5e1fb67201d93fb16c4fa190eb904ec5902189a GIT binary patch literal 20249 zcmeHPe^49Oo!?zaAV3KG3;&3N7Yw$Q7%;|m6FYHi1GWPOV}!6{0m>q+Kp4yX8?zd+Np^#om}%J5nA4C;avSnU zUW0{LATDbSL-Os}Agy*Y$O3x~$U=KA$R+kXkW1|rkjw1(AeY;%AXii|_JSiUDY6$r zXr+A#$W`{GAXoRWwq-L|+-4ga&my8HMh&DsK zK#<)&pUWQ@5{X-oMKvNcIGBjY^7wjuLD|h>#)%)cmI3~=Cn2_r=`y{_tYS(ThsnWg z~-g*o}76_Cz`ECGB9XgKf=E%?(3src&nEwkpn9pkBj}S}OHPYM5u5 z91N4k@Jv!|3)MUIqh8zAWqPc7=3w>wdKg<)vs=A_N41e>AA`Vdt_uch2ZIBYK$j4M zgQcCrVdoH|gWJa14fNb(HrhXNLNb|;A4+^b2IY%@5RPUtqZ6M5!XpJ{Am z9Y;m6pRewy6NdSk4!_V{;SEXdpf4cF6{6GuZ%+p{lTYfY92_P~u^5}?X}3zXMtP8W zb`6N%k1!uvmb_#;*A}%rI%TQ&V0G~e4IixGzu7noSDBPoE(;=P8wcTJH~T8%U|N%3 zNxT7mZ7jToX1IQ1pv8R#9Z`474F-ayFj;k!kC+z`)$h89V% z{<)Cg*Slk!BSlb}Y<3tj2IQ2}#&d@s0DfQz9Y09z zE#mhmooK-lsMtVi;c5>2ujV>8AU38CCkCk8OixpK*o40;!Vyvq^$zn|TH;oTX8Xt-oAHHcUi5g2r%ilL{ zq79ky`d~4!M`r&~VJu^Uv5fb@SjHp_PxC_Q7@m=_e3Y>?Hd_E68Rjy|GNzrAxhh8H zfB^wa7QlcedzP9@3)ciM3i6R;khlyCX9OrQ==|o;I9JU@XQQV6&zjw2j)%HQoR_g> zFAmS~Nn=?KrXxDUt;HZZf;t01d?PDB=u|~tGKEcS^Oa7c6J!$d5DLV;lu@sdMi{Q# z4{4}9oSq^UN*$yaOUI)q1(8e(3dAN;XWFi)OmM*!AD*gdiCK?K*0hWXFPwPs%-7GH6G!W&3vAJvma~S4^@t9y zhKsdhh6@K{MHSQL%DY4B?OP_Mpp~7)p>@5yq;_dm%82_CXBqpKIGZw`c!&;kIW&+C zV)2E1P!L;omx5{NYJ&oP!O?a7-RhYD)=I4AArwd=WL~g@*(^iBv`M>%s=jG}(Uwba z_D6Q0_zDV~ppwT?>_o8(MBD%agglAC-6)ztP+m+zOtV@K(g9a#5szTnRuCy5gcB^P z>|OahD0}_~r0f}0HSKP97hYnUN|B9Kq%@euS|f=Pxys_ZjZ1#uFzU)MbwM6cpGX+Bg|#t zO*h5V8NecDL0Cu-yXL{d9BsT1z!wH#RlWq`J~hXxZCBc_cD>m(v2Q|-ZEu{aIux@u zO;#NmD@kaM?$Ofeg7Rq9A=Dh3k~PQu!xFUo4 z_<@4l57w}J=JSKxI2BGZ6Ih_D=lsCLon_C~P0-so$$*Ork`bo&nvq(+NiksK6n_Vk z2Hi&%5#4hZ2i;5QI}rfuF<9%sP@7KQJOB;wpfLW?`OBvv{Xr<_d}`-|vINgNoquEj z6;0@!6tFj7Wf!J*1|TW+A=#qcGe_?f;X<5!G|oPfg7-N4rg*;xPQZH3+S#4Q7)AhH z(TT`Re-1{~Z^{@aqA>m0Va>z=OM9v=1gj**W)gyHDNnc?qmUj*O?p8jvk3t^AQP|5 z*jhsJ7*@HZ4Kq==Wvu%38l~O9{KnWg;)DZb4>&)Jd2@lma&>I=_Q=xh^uhD-Sv>tQ za!b=#^($H5w!UmVCy#EOF5D2^(iAOdo@!~o+0r@L(iw4eN8H{>S5K^^H)8djHQeI3 zoE;x!F*(+Ru^QTIY}x43v7*XpbJfRrXsEViFjU{ZmB$nw*6DC#20A>b(BXr%TEjdo zg@iJ#vud_#2^JmGuASbCWf|s#pYgh>X>sVMgpN^dtvwz4JOhLEL9vel%6BWCMn1=( znDdd(=iH*Kn9uK8+XMsQ+~HmT~v(rQ|HDEBEY0+t}U))8;LA*Xt=8q!?ko z=$2s3TSQd}?qkI*3zUY$r1O4^F#q3H+=}Vog@x?rLSj02M0Myv!K31pkg;qUHugao zGhkyjT%s!G3viNowM|zn6V4iG){xaPrygPb4OPB5Kf3;wCVsB#236Q?Mp6RzgP~On z>h2Mw6yg*WG2yCEhKV-Zy{A+=4Qk^untXqsH(V%=J-p>|+0{pX z_~^u%8+GqB{=D(VlaZ&MdEat;f$IJ@Aa5KM@?4h*CtZ_sreBl8z~VEXda9_U zFF|r0iqo2&^OD+wybS57D*qasBrw-Wm+G7;OLfk>EY(%-xN_p^nK#c&bl+GW`%3dv z_2HPcWwQG4*xrP}#WPwnU9d4)eHaZcEjlLO>rx$f3f^HK*P!_~p9i(_tM_PSG1xWB zw)%S92Q;T$q(du?XNUEUrx*+)2|x`blV+ z2LyHxiin>1yptk z8e?X*f>;>VVw28;wF%QU)P{T?QV+pj{waw2)NU)bUfFSV_nW&X)=#)&H4Rf0jWO$? z$%@7?Hi5LlC^ucOK3dTjwH~@brX0?j4)>(P9r1_}Z*R=ui?sDc5BEi_eP<2HFkCmb z?1DPSzpFDE^_XbV=lE3_=J;QFra>n&U+T%G_`_7&ppN?KF!e8?nI06TDvDvIqG_Ot z)6xu}s%gmxE}6CD%#O?|>1XmuvvcXMpjK=*JZ?m1W-#E+phcLh1A)6DJfc4+fRn7; z1Dhh2D2~m0{R07cu6uI^g<0X6jO~)Z;BUgyWORm5_2ts2rS$yPQO~8m^L-a~U*2|g z*AI712sgr!<6Sq8i_zm^oa&g@ICGb4mkKemP8 zIBmQq@gBNXo6cP$S0BaXbw~+%9wR5I%s#3z`%+Y9-(6JZKf=4Mer)}PhJ~0h65ef8 zWwsTB%a02FV0bex4G#?VZsxrK!ao=Cx%>G(Uysb65Kr>^LY~TSxqYzLC!OR2UcTE8 zn+G6~K=8i4kf%rF2Zs3*fuYLqrWU*gq3*y*e#jT><-M@`fcFH#qQv`QQViMmg?i-5 z@cILOUpLDqcl zmL>e zdxwb()eQ`7PTa-Q)D6A?C|cW4fcN0u3Mo;GUeQ0udxeu~F|k&a;R-BTpD?_cAN2KL z`<~paJdOwVbxb-G@ShN|4WOzeVVfQLK?wHx!n7K6D}vW|l0Om>`bEMAy8A@fq5(Hl zhO71_s<{zL9_Z$Mvf6s?UZ^&0R(C&C)F;7Xdn&_Qj|xF|FTb%t3=Bf+43})&% z54RDqTkMByU;_x>)~@tN59}wX3~$>v%r`*WZ^oi3149mmJi|B;;8veI&_e`hD5!?S z3;ZDQg~gKaqeq34!?c2M%L$P{U0|fpzV?O&y8R*_gjN~!g~LK+ibV|K4pUU zFr6^!xfH7R>c>*Xxl|3Qd4OgCXphq?oaQCPcIvT-iJSp^>H*T|()kKCAN`0+=MJM2 z7ar;F&S$l*Ra-mMC+w$UOpDc&E!Oj^s(T%P8gmYZk?4&O|$4#iE$Z;bc(yu)$d!7=d zAU}ae{Vn|EUxB!dd!DjP=%Pq6RPG?AAZ_DQ0!4 zNCo~hq^FlPEp<9IDpd1W2-1bFP*70&TgKeYyAf>0Zo+;XEy5`o>MkO z{4*wc9K}u)spJ;Vk^>|tdSI*Wpx+nNS&jS)B&I%LxLZQqV5ZE!XpYVO-4oRpvo7Vomj6azn%^Bg=#H-QOs^C_R_=!bWcFKz zu{LpVjwKzbhsQ!$=hEb;{nD}X$KLQ>Zo7K?hsP%jKXSz?>tp5nV?_t1%?IaWNM2-b zLz&@Wc!2EXN1$=9b2ar38Lw}zsV}m=wW+Lr$*Q+4d2s&r$~=hw*%A|+|E$Oa=PB%o ztV7weOkvNg#MWf^Cc`~{Od|`(DDg|Tr(Z`&iGKY7+_^L!)G--&$DnO3h9zF`BQ~W) zdF|eLITSpT)3BTV6j(!+3`x1n!)|sndh6@cE}XVGm#a0$kUa;b$}YfyHQFRk+r|vB z&n5WI2&;ES;5#15VFIVMG@R9z1t0uqg^8a@&2?^#U}9FfNL*#`!laeQi7TAhau>&e zP4NpI1mkBqf_fX;bI}M2oD-Hn{>s+pEc(F@7yY=0%|yQ@LEgiw*uzvur{7vgyKPzl z_zZQ>nCuF*8PYF<|LiLu7Q=82X6uCZ0}s%CR`|eB zMuWCd^+~2iZ9{W-*?ur0f`v@xu?>a-!~+(!m7A$aN%?>ZFKgfMuo2p_u=7*TJC=UUF$g77vR#Y4}wkbuuS{7--T;9SW~B;@R^M|U>lUmG!|d+ z6dXpQ742Wl0KQ?9&`<$cv|e!{lhdD5Gm6>SZGar@tcI8y07KX$bC+fe)4j``dYtx2 zp9*-MiY#_+=U>pJFsNt3V3m}ko{!zI^9_ap9|S0qcCQiR%2d2y0WVC=f3U9KQ&LvG zVUw-v5ohPA=LuG621hi($t?I|BXKD6Xc~)3eca#|CGrwp=Ro&>Z=Xm#an`MP3n}}d z6c2V~D^%+EP~FwBF=d#DF(b_P?C%7oj(VqhCFtDepsS(B_d{2M4p3T)IsgVH*o*7o zQy&{H^j}$jS@_Y0=!VB)rH@}LnJV3tNDc=`4*J6Zt^tQhBXa&I(}TN<>hW$2MBJWNyx$&pdEnyV%X_0` z+ph$oW%ciPqh*I8O`XxQ&gr5q=o(B32e=LOw*7dHk5=?H=bd`n(XqA*ow1^tY4f)E zv^2<*s%K74F=d!)>hg`(AA79MY<+7>9-O~pHi5LQQB-kMyWv}D_?f3bz%SE%6!4ui zSZ|=ty76546(IQLlUpWq`3oU{+(dyLMfCoz#b67H4itVA)cxWtp1q9X`zT&VL1$HH zRia8d?N?>D$XbkB4I*xSLiuXZZt@=xL|l?PL40IjS@xGq!7rKoUomTc#jN=?Q~GOW vSCrXxD=VM1-73}uPtOV=t_;tVpmw#`YN;AA-{LKBX)VOg7F$^x1 Date: Wed, 8 Oct 2025 22:57:11 +0100 Subject: [PATCH 2/2] finished X part of the lab --- main.ipynb | 2115 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 2094 insertions(+), 21 deletions(-) diff --git a/main.ipynb b/main.ipynb index 94aee11..e46b654 100644 --- a/main.ipynb +++ b/main.ipynb @@ -395,20 +395,55 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 86, "metadata": {}, "outputs": [], "source": [ - "def unique(lst_un):\n", - " \n", + "def unique(input_list):\n", + " lst_un = []\n", + " for item in input_list:\n", + " if item not in lst_un:\n", + " lst_un.append(item)\n", + " return lst_un \n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 87, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 2, 3, 4]\n" + ] + } + ], + "source": [ + "input_list = [1, 1, 1, 2, 3, 4, 4]\n", + "lst_un = unique_values(input_list)\n", + "print(lst_un)" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.307s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_unique(unique)" @@ -424,19 +459,54 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 107, "metadata": {}, "outputs": [], "source": [ "def mode_counter(arr):\n", - "#your code here" + " frequency_dict = {}\n", + " # Count the frequency of each element\n", + " for item in arr:\n", + " if item in frequency_dict:\n", + " frequency_dict[item] += 1\n", + " else:\n", + " frequency_dict[item] = 1\n", + "\n", + " # Find the element with the maximum frequency\n", + " max_count = 0\n", + " mode = None\n", + " for key in frequency_dict:\n", + " if frequency_dict[key] > max_count:\n", + " max_count = frequency_dict[key]\n", + " mode = key\n", + "\n", + " return mode" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 108, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "..................." + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + ".................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.094s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_mode(mode_counter)" @@ -452,12 +522,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 101, "metadata": {}, "outputs": [], "source": [ "def st_dev(list_sd):\n", - "#your code here" + " # Calculate the mean\n", + " total = 0\n", + " for num in list_sd:\n", + " total += num\n", + " mean = total / len(list_sd)\n", + " # Calculate the variance\n", + " variance_sum = 0\n", + " for num in list_sd:\n", + " variance_sum += (num - mean) * (num - mean)\n", + " variance = variance_sum / len(list_sd)\n", + " # Calculate the standard deviation\n", + " st_dev = variance ** 0.5\n", + " return st_dev\n" ] }, { @@ -465,6 +547,584 @@ "execution_count": null, "metadata": {}, "outputs": [], + "source": [ + "\n", + "#your code here" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + ".FFF.F.F" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "FFF..F.FFF..FFF.F.F.FFFFF....FFF..FF.F.F.FFF.F..FFFFF.FFF.F.F...FFF.F.FF...FF.F.FFFFFFFF..F.\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 590.8670307882835 != 598.0293169061281 within 5 delta (7.162286117844587 difference) : Should be 598.0293169061281\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 597.378996057407 != 610.227326078367 within 5 delta (12.84833002096002 difference) : Should be 610.227326078367\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 520.3670357083083 != 530.2796794725765 within 5 delta (9.912643764268182 difference) : Should be 530.2796794725765\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 548.5671945551873 != 561.4764241638067 within 5 delta (12.909229608619398 difference) : Should be 561.4764241638067\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 575.0160220424614 != 583.6633647498861 within 5 delta (8.647342707424741 difference) : Should be 583.6633647498861\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 607.810304616119 != 613.8583173057854 within 5 delta (6.048012689666393 difference) : Should be 613.8583173057854\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 584.9622769655491 != 591.0242241257133 within 5 delta (6.061947160164209 difference) : Should be 591.0242241257133\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 425.83363420902845 != 443.2216988810164 within 5 delta (17.388064671987934 difference) : Should be 443.2216988810164\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 499.2635167640408 != 519.6499438107967 within 5 delta (20.386427046755898 difference) : Should be 519.6499438107967\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 596.3281395339314 != 628.5850512593079 within 5 delta (32.256911725376426 difference) : Should be 628.5850512593079\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 547.5574125148887 != 558.8484439750489 within 5 delta (11.291031460160184 difference) : Should be 558.8484439750489\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 590.8767404873707 != 599.5031346067854 within 5 delta (8.626394119414613 difference) : Should be 599.5031346067854\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 478.0521795407237 != 489.3020052901402 within 5 delta (11.249825749416459 difference) : Should be 489.3020052901402\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 653.5520062336823 != 666.4948865866518 within 5 delta (12.942880352969496 difference) : Should be 666.4948865866518\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 606.9502895487843 != 612.251266087026 within 5 delta (5.3009765382416845 difference) : Should be 612.251266087026\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 532.7077465270019 != 540.264262204963 within 5 delta (7.556515677961102 difference) : Should be 540.264262204963\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 612.0563571886171 != 632.1290875551713 within 5 delta (20.072730366554197 difference) : Should be 632.1290875551713\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 507.4674827944644 != 524.1101625612691 within 5 delta (16.642679766804747 difference) : Should be 524.1101625612691\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 623.9470317377949 != 629.1251041893905 within 5 delta (5.1780724515956535 difference) : Should be 629.1251041893905\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 593.4791089887852 != 598.8500701289986 within 5 delta (5.370961140213353 difference) : Should be 598.8500701289986\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 671.8555531492767 != 704.648048835213 within 5 delta (32.792495685936274 difference) : Should be 704.648048835213\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 557.924937946902 != 563.2640542188328 within 5 delta (5.339116271930834 difference) : Should be 563.2640542188328\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 575.9834645099536 != 582.0786973675278 within 5 delta (6.09523285757416 difference) : Should be 582.0786973675278\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 548.3531717344657 != 558.0592911275585 within 5 delta (9.706119393092763 difference) : Should be 558.0592911275585\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 556.8430546392763 != 581.6036021208947 within 5 delta (24.76054748161846 difference) : Should be 581.6036021208947\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 605.8610416593511 != 613.9937685312153 within 5 delta (8.132726871864179 difference) : Should be 613.9937685312153\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 557.9864571599609 != 564.0189184996651 within 5 delta (6.032461339704241 difference) : Should be 564.0189184996651\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 526.2637171608926 != 543.522829940626 within 5 delta (17.259112779733414 difference) : Should be 543.522829940626\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 548.8300233750183 != 562.3834228404268 within 5 delta (13.55339946540846 difference) : Should be 562.3834228404268\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 500.3339276426834 != 505.51887366611055 within 5 delta (5.1849460234271305 difference) : Should be 505.51887366611055\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 543.8637201484854 != 552.5660922372297 within 5 delta (8.702372088744255 difference) : Should be 552.5660922372297\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 616.3579698002999 != 624.0148841251754 within 5 delta (7.656914324875515 difference) : Should be 624.0148841251754\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 514.4019983389078 != 521.6988450443752 within 5 delta (7.296846705467374 difference) : Should be 521.6988450443752\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 508.09351918194534 != 517.4171137261693 within 5 delta (9.323594544223965 difference) : Should be 517.4171137261693\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 525.8305564328475 != 535.1380145170784 within 5 delta (9.307458084230916 difference) : Should be 535.1380145170784\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 581.3908562929784 != 588.6133798815737 within 5 delta (7.2225235885953225 difference) : Should be 588.6133798815737\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 552.7556151060046 != 561.8926905548111 within 5 delta (9.137075448806513 difference) : Should be 561.8926905548111\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 496.4925869425332 != 518.5695944060202 within 5 delta (22.077007463487007 difference) : Should be 518.5695944060202\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 571.7100341244218 != 577.1810681980239 within 5 delta (5.471034073602141 difference) : Should be 577.1810681980239\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 578.5739343420164 != 585.9446000766407 within 5 delta (7.370665734624254 difference) : Should be 585.9446000766407\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 584.540646382035 != 589.9282316676483 within 5 delta (5.387585285613341 difference) : Should be 589.9282316676483\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 575.1897197610723 != 582.1619709280998 within 5 delta (6.97225116702748 difference) : Should be 582.1619709280998\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 604.1349471199535 != 612.4682365974916 within 5 delta (8.333289477538074 difference) : Should be 612.4682365974916\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 613.0450361922849 != 619.2690032347388 within 5 delta (6.2239670424538645 difference) : Should be 619.2690032347388\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 633.5631610603116 != 638.5716434352556 within 5 delta (5.0084823749440375 difference) : Should be 638.5716434352556\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 486.8463975143775 != 492.474866552646 within 5 delta (5.62846903826852 difference) : Should be 492.474866552646\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 586.8406143412095 != 594.5120590821199 within 5 delta (7.671444740910374 difference) : Should be 594.5120590821199\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 514.8270475498435 != 525.899863725659 within 5 delta (11.072816175815433 difference) : Should be 525.899863725659\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 617.8474119047278 != 626.3698477626347 within 5 delta (8.522435857906885 difference) : Should be 626.3698477626347\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 485.9258203600237 != 497.3609335969184 within 5 delta (11.435113236894722 difference) : Should be 497.3609335969184\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 572.6271643705003 != 579.9220720194952 within 5 delta (7.294907648994922 difference) : Should be 579.9220720194952\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 572.3025803684253 != 581.7627680417249 within 5 delta (9.460187673299629 difference) : Should be 581.7627680417249\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 527.9446348008152 != 534.3441973619208 within 5 delta (6.399562561105654 difference) : Should be 534.3441973619208\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 590.9071647422716 != 610.2862955203893 within 5 delta (19.37913077811777 difference) : Should be 610.2862955203893\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 485.39494845264994 != 493.41854901911523 within 5 delta (8.02360056646529 difference) : Should be 493.41854901911523\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 616.743465089095 != 626.0183233552118 within 5 delta (9.27485826611678 difference) : Should be 626.0183233552118\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 568.5468687270397 != 575.6098335572499 within 5 delta (7.062964830210149 difference) : Should be 575.6098335572499\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 535.9000275295504 != 551.4365789948965 within 5 delta (15.536551465346179 difference) : Should be 551.4365789948965\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 623.0209024566986 != 632.1165792382756 within 5 delta (9.095676781576913 difference) : Should be 632.1165792382756\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 590.2077419950856 != 599.6516655189723 within 5 delta (9.443923523886724 difference) : Should be 599.6516655189723\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_stdev..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 142, in runTest\n", + " self.assertAlmostEqual(fn(self.input), self.output, delta=5, msg=f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 564.554604601111 != 570.1722017143971 within 5 delta (5.617597113286138 difference) : Should be 570.1722017143971\n", + "\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.203s\n", + "\n", + "FAILED (failures=61)\n" + ] + } + ], "source": [ "# This will test your function \n", "test_stdev(st_dev)" @@ -479,19 +1139,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 109, "metadata": {}, "outputs": [], "source": [ "def pangram(string):\n", + " alphabet = set(\"abcdefghijklmnopqrstuvwxyz\")\n", + " letters_in_string = set(char.lower() for char in string if char.isalpha())\n", + "\n", + " return alphabet == letters_in_string\n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 110, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "..............................\n", + "----------------------------------------------------------------------\n", + "Ran 30 tests in 0.028s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_pangram(pangram)" @@ -508,19 +1184,1371 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 120, "metadata": {}, "outputs": [], "source": [ "def sort_alpha(string):\n", - "#your code here" + " words = []\n", + " current_word = \"\"\n", + " \n", + " # Manually split the string by commas\n", + " for char in string:\n", + " if char == ',':\n", + " words.append(current_word.strip())\n", + " current_word = \"\"\n", + " else:\n", + " current_word += char\n", + " # Append the last word\n", + " words.append(current_word.strip())\n", + "\n", + " # Sort the list of words\n", + " sorted_words = sorted(words)\n", + " \n", + " # Manually join the words with commas\n", + " result = \"\"\n", + " for i, word in enumerate(sorted_words):\n", + " if i > 0:\n", + " result += \", \"\n", + " result += word\n", + "\n", + " return result" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 121, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "apple, banana, kiwi, orange\n" + ] + } + ], + "source": [ + "string = \"banana, apple, orange, kiwi\"\n", + "sorted_string = sort_alpha(string)\n", + "print(sorted_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aksor, bjgjoup, bjkhhzq, bqvd, fskltxtugf, ipuc[177 chars]effo' != 'aksor,bjgjoup,bjkhhzq,bqvd,fskltxtugf,ipucybpbi[153 chars]effo'\n", + "- aksor, bjgjoup, bjkhhzq, bqvd, fskltxtugf, ipucybpbi, iynh, jbwqtjqx, khbkgp, mivw, noudshd, okqoxlyk, ourn, ownszxemy, qelf, rjqwmnfu, rkzlwpngw, rlhkenrh, sawglbhekd, smfwlcwdzh, umnvns, vcezsyoid, vhkerepi, wjnajodxzt, ybeffo\n", + "+ aksor,bjgjoup,bjkhhzq,bqvd,fskltxtugf,ipucybpbi,iynh,jbwqtjqx,khbkgp,mivw,noudshd,okqoxlyk,ourn,ownszxemy,qelf,rjqwmnfu,rkzlwpngw,rlhkenrh,sawglbhekd,smfwlcwdzh,umnvns,vcezsyoid,vhkerepi,wjnajodxzt,ybeffo\n", + " : Should be aksor,bjgjoup,bjkhhzq,bqvd,fskltxtugf,ipucybpbi,iynh,jbwqtjqx,khbkgp,mivw,noudshd,okqoxlyk,ourn,ownszxemy,qelf,rjqwmnfu,rkzlwpngw,rlhkenrh,sawglbhekd,smfwlcwdzh,umnvns,vcezsyoid,vhkerepi,wjnajodxzt,ybeffo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bbawat, cvho, cxmqbhwxyp, dzlr, eblqgwarvq, epim[132 chars]byhp' != 'bbawat,cvho,cxmqbhwxyp,dzlr,eblqgwarvq,epim,gjzy[112 chars]byhp'\n", + "- bbawat, cvho, cxmqbhwxyp, dzlr, eblqgwarvq, epim, gjzyjan, hintkojukq, krbaagv, nlgmgjx, nssqtyuxau, pbpdey, qiqav, rfxm, ryaafhc, spxjfxzs, srgfm, tnhvtirh, ybln, ydsvtmyw, zyrnjlbyhp\n", + "? - - - - - - - - - - - - - - - - - - - -\n", + "+ bbawat,cvho,cxmqbhwxyp,dzlr,eblqgwarvq,epim,gjzyjan,hintkojukq,krbaagv,nlgmgjx,nssqtyuxau,pbpdey,qiqav,rfxm,ryaafhc,spxjfxzs,srgfm,tnhvtirh,ybln,ydsvtmyw,zyrnjlbyhp\n", + " : Should be bbawat,cvho,cxmqbhwxyp,dzlr,eblqgwarvq,epim,gjzyjan,hintkojukq,krbaagv,nlgmgjx,nssqtyuxau,pbpdey,qiqav,rfxm,ryaafhc,spxjfxzs,srgfm,tnhvtirh,ybln,ydsvtmyw,zyrnjlbyhp\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bcogbnxqm, dvkhhfw, eqcpbp, fnsnur, kbcyzwvddu, mlw[35 chars]ipth' != 'bcogbnxqm,dvkhhfw,eqcpbp,fnsnur,kbcyzwvddu,mlwnf,pd[26 chars]ipth'\n", + "- bcogbnxqm, dvkhhfw, eqcpbp, fnsnur, kbcyzwvddu, mlwnf, pdvfyo, qxepk, taimwsxwkc, xspiipth\n", + "? - - - - - - - - -\n", + "+ bcogbnxqm,dvkhhfw,eqcpbp,fnsnur,kbcyzwvddu,mlwnf,pdvfyo,qxepk,taimwsxwkc,xspiipth\n", + " : Should be bcogbnxqm,dvkhhfw,eqcpbp,fnsnur,kbcyzwvddu,mlwnf,pdvfyo,qxepk,taimwsxwkc,xspiipth\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'emuwonti, evojzseacz, fjikz, gbxz, gjmryinvs, iped[98 chars]bvzb' != 'emuwonti,evojzseacz,fjikz,gbxz,gjmryinvs,ipedtaii,[81 chars]bvzb'\n", + "- emuwonti, evojzseacz, fjikz, gbxz, gjmryinvs, ipedtaii, jjkcra, mtqp, nmpkfrdj, ovwnb, pixcv, qopbod, qrkahepu, rcrmqlhsb, redp, rwvg, yqdzqwyu, zyrbvzb\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ emuwonti,evojzseacz,fjikz,gbxz,gjmryinvs,ipedtaii,jjkcra,mtqp,nmpkfrdj,ovwnb,pixcv,qopbod,qrkahepu,rcrmqlhsb,redp,rwvg,yqdzqwyu,zyrbvzb\n", + " : Should be emuwonti,evojzseacz,fjikz,gbxz,gjmryinvs,ipedtaii,jjkcra,mtqp,nmpkfrdj,ovwnb,pixcv,qopbod,qrkahepu,rcrmqlhsb,redp,rwvg,yqdzqwyu,zyrbvzb\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'boksjy, bpeikjqnv, dszjuqmulf, dwxuth, ewce, ewj[163 chars]cgqv' != 'boksjy,bpeikjqnv,dszjuqmulf,dwxuth,ewce,ewjprt,e[141 chars]cgqv'\n", + "- boksjy, bpeikjqnv, dszjuqmulf, dwxuth, ewce, ewjprt, eznctheanb, gjbxvyw, gmawlu, hdexqhum, hutntoaea, jwby, lhjb, mysvtmi, ouafd, pkryeozn, qcfbjguxmu, rcjuemazfb, suqepqvo, sxmdqmer, takxeane, tgtlujao, zzeodjcgqv\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ boksjy,bpeikjqnv,dszjuqmulf,dwxuth,ewce,ewjprt,eznctheanb,gjbxvyw,gmawlu,hdexqhum,hutntoaea,jwby,lhjb,mysvtmi,ouafd,pkryeozn,qcfbjguxmu,rcjuemazfb,suqepqvo,sxmdqmer,takxeane,tgtlujao,zzeodjcgqv\n", + " : Should be boksjy,bpeikjqnv,dszjuqmulf,dwxuth,ewce,ewjprt,eznctheanb,gjbxvyw,gmawlu,hdexqhum,hutntoaea,jwby,lhjb,mysvtmi,ouafd,pkryeozn,qcfbjguxmu,rcjuemazfb,suqepqvo,sxmdqmer,takxeane,tgtlujao,zzeodjcgqv\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'andgdv, cdhgyyb, curq, cydg, dozvcqka, etxy, fja[149 chars]baow' != 'andgdv,cdhgyyb,curq,cydg,dozvcqka,etxy,fjaggnta,[127 chars]baow'\n", + "- andgdv, cdhgyyb, curq, cydg, dozvcqka, etxy, fjaggnta, hnxzzfwjdh, igobm, kkuqzfibj, nxwt, pnlkauw, pyceid, qpto, rtcmxs, spaxars, tonlcu, tpyqfjtgoc, tsdomteggy, uyedjdensq, vxwpckq, vyfqiwgv, wuxbaow\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ andgdv,cdhgyyb,curq,cydg,dozvcqka,etxy,fjaggnta,hnxzzfwjdh,igobm,kkuqzfibj,nxwt,pnlkauw,pyceid,qpto,rtcmxs,spaxars,tonlcu,tpyqfjtgoc,tsdomteggy,uyedjdensq,vxwpckq,vyfqiwgv,wuxbaow\n", + " : Should be andgdv,cdhgyyb,curq,cydg,dozvcqka,etxy,fjaggnta,hnxzzfwjdh,igobm,kkuqzfibj,nxwt,pnlkauw,pyceid,qpto,rtcmxs,spaxars,tonlcu,tpyqfjtgoc,tsdomteggy,uyedjdensq,vxwpckq,vyfqiwgv,wuxbaow\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'awvgl, hgmuamy, hmtu, kfgszddt, mvgh, ntco, oxc[59 chars]ugvh' != 'awvgl,hgmuamy,hmtu,kfgszddt,mvgh,ntco,oxcmde,pa[46 chars]ugvh'\n", + "- awvgl, hgmuamy, hmtu, kfgszddt, mvgh, ntco, oxcmde, paikfgjli, rdkpo, rortjo, rvwpiqp, sutxpy, ukwqzhq, vvugvh\n", + "? - - - - - - - - - - - - -\n", + "+ awvgl,hgmuamy,hmtu,kfgszddt,mvgh,ntco,oxcmde,paikfgjli,rdkpo,rortjo,rvwpiqp,sutxpy,ukwqzhq,vvugvh\n", + " : Should be awvgl,hgmuamy,hmtu,kfgszddt,mvgh,ntco,oxcmde,paikfgjli,rdkpo,rortjo,rvwpiqp,sutxpy,ukwqzhq,vvugvh\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bygxdigfe, cnbd, fxhyef, gfgbj, ggbyymvf, hzylekcor[154 chars]zkwi' != 'bygxdigfe,cnbd,fxhyef,gfgbj,ggbyymvf,hzylekcor,kekt[130 chars]zkwi'\n", + "- bygxdigfe, cnbd, fxhyef, gfgbj, ggbyymvf, hzylekcor, kektm, njhcsgxmym, obdkz, pgpxwoekx, qfizz, qgwe, qithay, retv, rfneof, rrifxw, sldtsx, twqqtzpu, ugpq, ukeggksne, vwyxgfbzp, wamkg, ywlkmpxi, ywtxcis, zkwi\n", + "? - - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ bygxdigfe,cnbd,fxhyef,gfgbj,ggbyymvf,hzylekcor,kektm,njhcsgxmym,obdkz,pgpxwoekx,qfizz,qgwe,qithay,retv,rfneof,rrifxw,sldtsx,twqqtzpu,ugpq,ukeggksne,vwyxgfbzp,wamkg,ywlkmpxi,ywtxcis,zkwi\n", + " : Should be bygxdigfe,cnbd,fxhyef,gfgbj,ggbyymvf,hzylekcor,kektm,njhcsgxmym,obdkz,pgpxwoekx,qfizz,qgwe,qithay,retv,rfneof,rrifxw,sldtsx,twqqtzpu,ugpq,ukeggksne,vwyxgfbzp,wamkg,ywlkmpxi,ywtxcis,zkwi\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cxgwargqk, hepq, huvzhsrkxb, iiiwyz, ltbwlj, mnfkljxgv, rmcrfb, uuaevce, uukzf' != 'cxgwargqk,hepq,huvzhsrkxb,iiiwyz,ltbwlj,mnfkljxgv,rmcrfb,uuaevce,uukzf'\n", + "- cxgwargqk, hepq, huvzhsrkxb, iiiwyz, ltbwlj, mnfkljxgv, rmcrfb, uuaevce, uukzf\n", + "? - - - - - - - -\n", + "+ cxgwargqk,hepq,huvzhsrkxb,iiiwyz,ltbwlj,mnfkljxgv,rmcrfb,uuaevce,uukzf\n", + " : Should be cxgwargqk,hepq,huvzhsrkxb,iiiwyz,ltbwlj,mnfkljxgv,rmcrfb,uuaevce,uukzf\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bola, cnchm, cyrwbx, egdzwpad, iurrml, niym, n[100 chars]ywre' != 'bola,cnchm,cyrwbx,egdzwpad,iurrml,niym,nvjonc,[83 chars]ywre'\n", + "- bola, cnchm, cyrwbx, egdzwpad, iurrml, niym, nvjonc, nxlhmnh, ofrqfasl, ofuppdfpqo, plzndhny, raaq, roqlsl, rwdbqrb, saan, uaxqtxp, uypdvxg, vtnaaywre\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ bola,cnchm,cyrwbx,egdzwpad,iurrml,niym,nvjonc,nxlhmnh,ofrqfasl,ofuppdfpqo,plzndhny,raaq,roqlsl,rwdbqrb,saan,uaxqtxp,uypdvxg,vtnaaywre\n", + " : Should be bola,cnchm,cyrwbx,egdzwpad,iurrml,niym,nvjonc,nxlhmnh,ofrqfasl,ofuppdfpqo,plzndhny,raaq,roqlsl,rwdbqrb,saan,uaxqtxp,uypdvxg,vtnaaywre\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'dtaf, gqpnckur, muvnz, rkcqu, syjlte, zribbcqit' != 'dtaf,gqpnckur,muvnz,rkcqu,syjlte,zribbcqit'\n", + "- dtaf, gqpnckur, muvnz, rkcqu, syjlte, zribbcqit\n", + "? - - - - -\n", + "+ dtaf,gqpnckur,muvnz,rkcqu,syjlte,zribbcqit\n", + " : Should be dtaf,gqpnckur,muvnz,rkcqu,syjlte,zribbcqit\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bhzdstsa, falm, ojiass, vgmc' != 'bhzdstsa,falm,ojiass,vgmc'\n", + "- bhzdstsa, falm, ojiass, vgmc\n", + "? - - -\n", + "+ bhzdstsa,falm,ojiass,vgmc\n", + " : Should be bhzdstsa,falm,ojiass,vgmc\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'agsekppq, dombh, eajiyphk, embskb, fvnxiciop, gkfs[161 chars]yxfd' != 'agsekppq,dombh,eajiyphk,embskb,fvnxiciop,gkfsnfz,h[138 chars]yxfd'\n", + "- agsekppq, dombh, eajiyphk, embskb, fvnxiciop, gkfsnfz, hiaiib, icrx, jlnmvyl, mfgsf, njpmvn, ntcrqfdtn, nwclzug, oryielhmw, ptwjovsocu, qeymfalslu, qfqw, rieas, thpmswd, uhlhnpkzy, uzcku, xhczsmczw, yjontqctm, zyxfd\n", + "? - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ agsekppq,dombh,eajiyphk,embskb,fvnxiciop,gkfsnfz,hiaiib,icrx,jlnmvyl,mfgsf,njpmvn,ntcrqfdtn,nwclzug,oryielhmw,ptwjovsocu,qeymfalslu,qfqw,rieas,thpmswd,uhlhnpkzy,uzcku,xhczsmczw,yjontqctm,zyxfd\n", + " : Should be agsekppq,dombh,eajiyphk,embskb,fvnxiciop,gkfsnfz,hiaiib,icrx,jlnmvyl,mfgsf,njpmvn,ntcrqfdtn,nwclzug,oryielhmw,ptwjovsocu,qeymfalslu,qfqw,rieas,thpmswd,uhlhnpkzy,uzcku,xhczsmczw,yjontqctm,zyxfd\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'biytg, bngeet, cylwefffew, epgghqtkop, fnqnqj, [148 chars]zhir' != 'biytg,bngeet,cylwefffew,epgghqtkop,fnqnqj,hbtne[127 chars]zhir'\n", + "- biytg, bngeet, cylwefffew, epgghqtkop, fnqnqj, hbtneajfoz, hyeiucfrt, ikgx, jdbtjeb, kafsvgrimv, ldoahvnr, mtzeri, mxcrenqycd, naeb, nictfce, nsgmmq, qbqtizl, tvnt, vialwfksed, wnxtzdxek, zdekt, zhir\n", + "? - - - - - - - - - - - - - - - - - - - - -\n", + "+ biytg,bngeet,cylwefffew,epgghqtkop,fnqnqj,hbtneajfoz,hyeiucfrt,ikgx,jdbtjeb,kafsvgrimv,ldoahvnr,mtzeri,mxcrenqycd,naeb,nictfce,nsgmmq,qbqtizl,tvnt,vialwfksed,wnxtzdxek,zdekt,zhir\n", + " : Should be biytg,bngeet,cylwefffew,epgghqtkop,fnqnqj,hbtneajfoz,hyeiucfrt,ikgx,jdbtjeb,kafsvgrimv,ldoahvnr,mtzeri,mxcrenqycd,naeb,nictfce,nsgmmq,qbqtizl,tvnt,vialwfksed,wnxtzdxek,zdekt,zhir\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'djbsv, nfliih, tggrd, zlbrkjdxdn' != 'djbsv,nfliih,tggrd,zlbrkjdxdn'\n", + "- djbsv, nfliih, tggrd, zlbrkjdxdn\n", + "? - - -\n", + "+ djbsv,nfliih,tggrd,zlbrkjdxdn\n", + " : Should be djbsv,nfliih,tggrd,zlbrkjdxdn\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aksdipsmw, auadysdl, brbrfrsyg, byyvskqlsc, immdnmo, lnermyu, vtwsla, xqtiyu' != 'aksdipsmw,auadysdl,brbrfrsyg,byyvskqlsc,immdnmo,lnermyu,vtwsla,xqtiyu'\n", + "- aksdipsmw, auadysdl, brbrfrsyg, byyvskqlsc, immdnmo, lnermyu, vtwsla, xqtiyu\n", + "? - - - - - - -\n", + "+ aksdipsmw,auadysdl,brbrfrsyg,byyvskqlsc,immdnmo,lnermyu,vtwsla,xqtiyu\n", + " : Should be aksdipsmw,auadysdl,brbrfrsyg,byyvskqlsc,immdnmo,lnermyu,vtwsla,xqtiyu\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bwslewcwq, cabhqp, cvkoh, dtztgcpfkh, iovt, ivcxu, [142 chars]zvpu' != 'bwslewcwq,cabhqp,cvkoh,dtztgcpfkh,iovt,ivcxu,jezzll[120 chars]zvpu'\n", + "- bwslewcwq, cabhqp, cvkoh, dtztgcpfkh, iovt, ivcxu, jezzllll, mfzrn, msguypqh, mzgevqdd, pkxwpk, pxhpyeht, qvffh, qwhg, sdtp, sfexfyuqf, sfywcbqzj, trveowafn, wcxnvcjkup, wnngux, xwldzl, yfki, yzvpu\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ bwslewcwq,cabhqp,cvkoh,dtztgcpfkh,iovt,ivcxu,jezzllll,mfzrn,msguypqh,mzgevqdd,pkxwpk,pxhpyeht,qvffh,qwhg,sdtp,sfexfyuqf,sfywcbqzj,trveowafn,wcxnvcjkup,wnngux,xwldzl,yfki,yzvpu\n", + " : Should be bwslewcwq,cabhqp,cvkoh,dtztgcpfkh,iovt,ivcxu,jezzllll,mfzrn,msguypqh,mzgevqdd,pkxwpk,pxhpyeht,qvffh,qwhg,sdtp,sfexfyuqf,sfywcbqzj,trveowafn,wcxnvcjkup,wnngux,xwldzl,yfki,yzvpu\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'fhyuqteus, jfhuqhd, krxmfrv, oqpmpgsg, rgkf, rlihknavv, twwwv' != 'fhyuqteus,jfhuqhd,krxmfrv,oqpmpgsg,rgkf,rlihknavv,twwwv'\n", + "- fhyuqteus, jfhuqhd, krxmfrv, oqpmpgsg, rgkf, rlihknavv, twwwv\n", + "? - - - - - -\n", + "+ fhyuqteus,jfhuqhd,krxmfrv,oqpmpgsg,rgkf,rlihknavv,twwwv\n", + " : Should be fhyuqteus,jfhuqhd,krxmfrv,oqpmpgsg,rgkf,rlihknavv,twwwv\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bbylhmlu, cpnnpilw, cvaurog, equmhk, evfbntcr, ghx[110 chars]mddq' != 'bbylhmlu,cpnnpilw,cvaurog,equmhk,evfbntcr,ghxrvnpk[93 chars]mddq'\n", + "- bbylhmlu, cpnnpilw, cvaurog, equmhk, evfbntcr, ghxrvnpkie, jbqoiilj, ksxnknjk, mebywioc, ngudx, orif, ozldiqykz, qonmagk, rdhqcb, srjexkqwc, xryvycwwea, zazq, zmddq\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ bbylhmlu,cpnnpilw,cvaurog,equmhk,evfbntcr,ghxrvnpkie,jbqoiilj,ksxnknjk,mebywioc,ngudx,orif,ozldiqykz,qonmagk,rdhqcb,srjexkqwc,xryvycwwea,zazq,zmddq\n", + " : Should be bbylhmlu,cpnnpilw,cvaurog,equmhk,evfbntcr,ghxrvnpkie,jbqoiilj,ksxnknjk,mebywioc,ngudx,orif,ozldiqykz,qonmagk,rdhqcb,srjexkqwc,xryvycwwea,zazq,zmddq\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'diviqcqdre, egwwbgkmq, eygmped, gdkcqre, gqdoiwcr, h[111 chars]ngin' != 'diviqcqdre,egwwbgkmq,eygmped,gdkcqre,gqdoiwcr,hpeksr[93 chars]ngin'\n", + "- diviqcqdre, egwwbgkmq, eygmped, gdkcqre, gqdoiwcr, hpeksrmeb, hpsjg, kcgnl, krrlpfqr, lmhw, mimuq, odgg, qwbjqtyfjf, tpinqfbdo, unmvflvcs, vvgeb, wxab, xwxc, zgdjzngin\n", + "? - - - - - - - - - - - - - - - - - -\n", + "+ diviqcqdre,egwwbgkmq,eygmped,gdkcqre,gqdoiwcr,hpeksrmeb,hpsjg,kcgnl,krrlpfqr,lmhw,mimuq,odgg,qwbjqtyfjf,tpinqfbdo,unmvflvcs,vvgeb,wxab,xwxc,zgdjzngin\n", + " : Should be diviqcqdre,egwwbgkmq,eygmped,gdkcqre,gqdoiwcr,hpeksrmeb,hpsjg,kcgnl,krrlpfqr,lmhw,mimuq,odgg,qwbjqtyfjf,tpinqfbdo,unmvflvcs,vvgeb,wxab,xwxc,zgdjzngin\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'pqky, qlbzmqm, yxaijdniu, zugi' != 'pqky,qlbzmqm,yxaijdniu,zugi'\n", + "- pqky, qlbzmqm, yxaijdniu, zugi\n", + "? - - -\n", + "+ pqky,qlbzmqm,yxaijdniu,zugi\n", + " : Should be pqky,qlbzmqm,yxaijdniu,zugi\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'agdru, dcgcd, ddtcmto, dzozvvhrth, eejkelbhhg, [69 chars]tbxl' != 'agdru,dcgcd,ddtcmto,dzozvvhrth,eejkelbhhg,gamzc[55 chars]tbxl'\n", + "- agdru, dcgcd, ddtcmto, dzozvvhrth, eejkelbhhg, gamzc, gulzbo, jokcqs, lbif, oteksfr, tvzp, vtnkra, wuac, zmttn, zzoztbxl\n", + "? - - - - - - - - - - - - - -\n", + "+ agdru,dcgcd,ddtcmto,dzozvvhrth,eejkelbhhg,gamzc,gulzbo,jokcqs,lbif,oteksfr,tvzp,vtnkra,wuac,zmttn,zzoztbxl\n", + " : Should be agdru,dcgcd,ddtcmto,dzozvvhrth,eejkelbhhg,gamzc,gulzbo,jokcqs,lbif,oteksfr,tvzp,vtnkra,wuac,zmttn,zzoztbxl\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'fppoqzdqej, hahnublwr, kzlcpi, ubsbc' != 'fppoqzdqej,hahnublwr,kzlcpi,ubsbc'\n", + "- fppoqzdqej, hahnublwr, kzlcpi, ubsbc\n", + "? - - -\n", + "+ fppoqzdqej,hahnublwr,kzlcpi,ubsbc\n", + " : Should be fppoqzdqej,hahnublwr,kzlcpi,ubsbc\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bxlljco, cwtrz, drfluyb, fkqks, keqjnaoqf, mixzc,[49 chars]xpcz' != 'bxlljco,cwtrz,drfluyb,fkqks,keqjnaoqf,mixzc,mqhua[38 chars]xpcz'\n", + "- bxlljco, cwtrz, drfluyb, fkqks, keqjnaoqf, mixzc, mqhuaxpd, qldivcpgt, tikf, xlqgvlubjx, xmeeivp, xpcz\n", + "? - - - - - - - - - - -\n", + "+ bxlljco,cwtrz,drfluyb,fkqks,keqjnaoqf,mixzc,mqhuaxpd,qldivcpgt,tikf,xlqgvlubjx,xmeeivp,xpcz\n", + " : Should be bxlljco,cwtrz,drfluyb,fkqks,keqjnaoqf,mixzc,mqhuaxpd,qldivcpgt,tikf,xlqgvlubjx,xmeeivp,xpcz\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'arodclvnyj, bvgvcwzyw, dyewc, efpqovsxbo, evdtzoieqd[92 chars]flyl' != 'arodclvnyj,bvgvcwzyw,dyewc,efpqovsxbo,evdtzoieqd,ftw[77 chars]flyl'\n", + "- arodclvnyj, bvgvcwzyw, dyewc, efpqovsxbo, evdtzoieqd, ftwmktcql, fwqj, izfpdeloa, kbogaw, kunkv, nrvf, rpffbypbv, sqlaaki, tffzfjjb, ttvne, wijsflyl\n", + "? - - - - - - - - - - - - - - -\n", + "+ arodclvnyj,bvgvcwzyw,dyewc,efpqovsxbo,evdtzoieqd,ftwmktcql,fwqj,izfpdeloa,kbogaw,kunkv,nrvf,rpffbypbv,sqlaaki,tffzfjjb,ttvne,wijsflyl\n", + " : Should be arodclvnyj,bvgvcwzyw,dyewc,efpqovsxbo,evdtzoieqd,ftwmktcql,fwqj,izfpdeloa,kbogaw,kunkv,nrvf,rpffbypbv,sqlaaki,tffzfjjb,ttvne,wijsflyl\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cwiqw, hpgenajb, ieho, jbob, kgdhpvhggp, lkdoem[103 chars]xiib' != 'cwiqw,hpgenajb,ieho,jbob,kgdhpvhggp,lkdoemdqv,n[86 chars]xiib'\n", + "- cwiqw, hpgenajb, ieho, jbob, kgdhpvhggp, lkdoemdqv, ncbmfj, ooewbvlpre, qlysu, rypbzu, scig, tjlkqdxlzv, vbzmzoo, vjlu, xqjvroh, xvdwjofzt, ybkqlta, yxiib\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ cwiqw,hpgenajb,ieho,jbob,kgdhpvhggp,lkdoemdqv,ncbmfj,ooewbvlpre,qlysu,rypbzu,scig,tjlkqdxlzv,vbzmzoo,vjlu,xqjvroh,xvdwjofzt,ybkqlta,yxiib\n", + " : Should be cwiqw,hpgenajb,ieho,jbob,kgdhpvhggp,lkdoemdqv,ncbmfj,ooewbvlpre,qlysu,rypbzu,scig,tjlkqdxlzv,vbzmzoo,vjlu,xqjvroh,xvdwjofzt,ybkqlta,yxiib\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bmwyt, ckgi, egmzv, erqeyhkuil, fhfb, helgafv, [101 chars]vmzk' != 'bmwyt,ckgi,egmzv,erqeyhkuil,fhfb,helgafv,mxwslo[84 chars]vmzk'\n", + "- bmwyt, ckgi, egmzv, erqeyhkuil, fhfb, helgafv, mxwsloouut, nedpmbon, pxfwwskk, qnedzrg, rzftnb, sbfedwm, spuo, stloix, svizlraye, tbeniytuk, tsfv, wvmzk\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ bmwyt,ckgi,egmzv,erqeyhkuil,fhfb,helgafv,mxwsloouut,nedpmbon,pxfwwskk,qnedzrg,rzftnb,sbfedwm,spuo,stloix,svizlraye,tbeniytuk,tsfv,wvmzk\n", + " : Should be bmwyt,ckgi,egmzv,erqeyhkuil,fhfb,helgafv,mxwsloouut,nedpmbon,pxfwwskk,qnedzrg,rzftnb,sbfedwm,spuo,stloix,svizlraye,tbeniytuk,tsfv,wvmzk\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'amkgn, apokp, evmgkgq, fvazdc, ggtru, gmcjqip, [111 chars]pqsk' != 'amkgn,apokp,evmgkgq,fvazdc,ggtru,gmcjqip,jegyjz[93 chars]pqsk'\n", + "- amkgn, apokp, evmgkgq, fvazdc, ggtru, gmcjqip, jegyjz, jshgac, kqtyoky, mhsabtsx, pmoxpj, wahhwqxv, xncv, xumdf, ygxctrusii, ypnjjjst, yqorjswfl, zgvlsr, znfopqsk\n", + "? - - - - - - - - - - - - - - - - - -\n", + "+ amkgn,apokp,evmgkgq,fvazdc,ggtru,gmcjqip,jegyjz,jshgac,kqtyoky,mhsabtsx,pmoxpj,wahhwqxv,xncv,xumdf,ygxctrusii,ypnjjjst,yqorjswfl,zgvlsr,znfopqsk\n", + " : Should be amkgn,apokp,evmgkgq,fvazdc,ggtru,gmcjqip,jegyjz,jshgac,kqtyoky,mhsabtsx,pmoxpj,wahhwqxv,xncv,xumdf,ygxctrusii,ypnjjjst,yqorjswfl,zgvlsr,znfopqsk\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aepzv, cczqp, chrqecrl, dhdznwovy, epngwta, eqm[98 chars]lrjo' != 'aepzv,cczqp,chrqecrl,dhdznwovy,epngwta,eqmtfhqg[83 chars]lrjo'\n", + "- aepzv, cczqp, chrqecrl, dhdznwovy, epngwta, eqmtfhqgpk, fzfhgmx, hfrpdcanp, ihnzqxg, mzbdtplluv, nxjcyj, qaedebtcft, qajv, qyxpzibnei, swibbir, ulrjo\n", + "? - - - - - - - - - - - - - - -\n", + "+ aepzv,cczqp,chrqecrl,dhdznwovy,epngwta,eqmtfhqgpk,fzfhgmx,hfrpdcanp,ihnzqxg,mzbdtplluv,nxjcyj,qaedebtcft,qajv,qyxpzibnei,swibbir,ulrjo\n", + " : Should be aepzv,cczqp,chrqecrl,dhdznwovy,epngwta,eqmtfhqgpk,fzfhgmx,hfrpdcanp,ihnzqxg,mzbdtplluv,nxjcyj,qaedebtcft,qajv,qyxpzibnei,swibbir,ulrjo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'clgm, cxfx, dhphhzgr, iynypfsh, kemrbtzlz, pzwh, qjzsdhmt, unopxb, yagz' != 'clgm,cxfx,dhphhzgr,iynypfsh,kemrbtzlz,pzwh,qjzsdhmt,unopxb,yagz'\n", + "- clgm, cxfx, dhphhzgr, iynypfsh, kemrbtzlz, pzwh, qjzsdhmt, unopxb, yagz\n", + "? - - - - - - - -\n", + "+ clgm,cxfx,dhphhzgr,iynypfsh,kemrbtzlz,pzwh,qjzsdhmt,unopxb,yagz\n", + " : Should be clgm,cxfx,dhphhzgr,iynypfsh,kemrbtzlz,pzwh,qjzsdhmt,unopxb,yagz\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'apcgiw, gznqi, phjn, rigueyfytl, rqenvcypv, sxlp[63 chars]gaiu' != 'apcgiw,gznqi,phjn,rigueyfytl,rqenvcypv,sxlprkck,[51 chars]gaiu'\n", + "- apcgiw, gznqi, phjn, rigueyfytl, rqenvcypv, sxlprkck, tzkynbxq, vkal, whmvnggmyl, yahufla, yjjuahc, zpola, zzhngaiu\n", + "? - - - - - - - - - - - -\n", + "+ apcgiw,gznqi,phjn,rigueyfytl,rqenvcypv,sxlprkck,tzkynbxq,vkal,whmvnggmyl,yahufla,yjjuahc,zpola,zzhngaiu\n", + " : Should be apcgiw,gznqi,phjn,rigueyfytl,rqenvcypv,sxlprkck,tzkynbxq,vkal,whmvnggmyl,yahufla,yjjuahc,zpola,zzhngaiu\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'dlrclc, glfp, hcvik, httqfvpjtl, itobfhuors, jcy[126 chars]prqz' != 'dlrclc,glfp,hcvik,httqfvpjtl,itobfhuors,jcyanmqi[106 chars]prqz'\n", + "- dlrclc, glfp, hcvik, httqfvpjtl, itobfhuors, jcyanmqi, jytoa, kxlp, ldnumdhyof, lwmpzgcjzu, nooygg, pclsyjzh, poasv, qfpmkidk, qlym, uyim, vjpqk, wfgaf, yqekn, yskjeybxd, zcsprqz\n", + "? - - - - - - - - - - - - - - - - - - - -\n", + "+ dlrclc,glfp,hcvik,httqfvpjtl,itobfhuors,jcyanmqi,jytoa,kxlp,ldnumdhyof,lwmpzgcjzu,nooygg,pclsyjzh,poasv,qfpmkidk,qlym,uyim,vjpqk,wfgaf,yqekn,yskjeybxd,zcsprqz\n", + " : Should be dlrclc,glfp,hcvik,httqfvpjtl,itobfhuors,jcyanmqi,jytoa,kxlp,ldnumdhyof,lwmpzgcjzu,nooygg,pclsyjzh,poasv,qfpmkidk,qlym,uyim,vjpqk,wfgaf,yqekn,yskjeybxd,zcsprqz\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'dsctik, efyiwsg, ewis, fcimi, gdjyfrylsd, gqwxak[162 chars]chxs' != 'dsctik,efyiwsg,ewis,fcimi,gdjyfrylsd,gqwxak,hcsz[138 chars]chxs'\n", + "- dsctik, efyiwsg, ewis, fcimi, gdjyfrylsd, gqwxak, hcsznza, hiaw, hijs, ieokm, joxzps, kwooxiz, nbzwxlvi, nhwjxdutym, nskmadgex, pggybt, rcpaugzi, reox, rzvqffex, thrnbsychw, ukrcd, vpwckz, xacols, xcwvqavq, xxxchxs\n", + "? - - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ dsctik,efyiwsg,ewis,fcimi,gdjyfrylsd,gqwxak,hcsznza,hiaw,hijs,ieokm,joxzps,kwooxiz,nbzwxlvi,nhwjxdutym,nskmadgex,pggybt,rcpaugzi,reox,rzvqffex,thrnbsychw,ukrcd,vpwckz,xacols,xcwvqavq,xxxchxs\n", + " : Should be dsctik,efyiwsg,ewis,fcimi,gdjyfrylsd,gqwxak,hcsznza,hiaw,hijs,ieokm,joxzps,kwooxiz,nbzwxlvi,nhwjxdutym,nskmadgex,pggybt,rcpaugzi,reox,rzvqffex,thrnbsychw,ukrcd,vpwckz,xacols,xcwvqavq,xxxchxs\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'awap, awfjissvdn, bkiqkr, bpuxqudpi, dasntbokr[168 chars]pdbc' != 'awap,awfjissvdn,bkiqkr,bpuxqudpi,dasntbokr,eln[146 chars]pdbc'\n", + "- awap, awfjissvdn, bkiqkr, bpuxqudpi, dasntbokr, elnaiu, eooyqlzbvt, jfhqsqyc, jlivumcij, mefi, mqcadojzhj, nhxgo, ossbhtuc, putqdiy, qshdkopkwm, qvopadu, swcdhhfa, totbjynn, tvlybg, ugghpjopsh, wylqs, xfnptbalv, zcpdbc\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ awap,awfjissvdn,bkiqkr,bpuxqudpi,dasntbokr,elnaiu,eooyqlzbvt,jfhqsqyc,jlivumcij,mefi,mqcadojzhj,nhxgo,ossbhtuc,putqdiy,qshdkopkwm,qvopadu,swcdhhfa,totbjynn,tvlybg,ugghpjopsh,wylqs,xfnptbalv,zcpdbc\n", + " : Should be awap,awfjissvdn,bkiqkr,bpuxqudpi,dasntbokr,elnaiu,eooyqlzbvt,jfhqsqyc,jlivumcij,mefi,mqcadojzhj,nhxgo,ossbhtuc,putqdiy,qshdkopkwm,qvopadu,swcdhhfa,totbjynn,tvlybg,ugghpjopsh,wylqs,xfnptbalv,zcpdbc\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bvpraxkro, cskek, czvtb, dppju, faguxnydi, fajsfw, [160 chars]aqnj' != 'bvpraxkro,cskek,czvtb,dppju,faguxnydi,fajsfw,fgfuap[138 chars]aqnj'\n", + "- bvpraxkro, cskek, czvtb, dppju, faguxnydi, fajsfw, fgfuapwnd, hzckgot, kxrwo, lvqfcmzbi, mefaro, mipgiey, myjfpjzjce, ngaduzii, oltnvlcnj, sqima, tavwlyicus, uctrbf, wujvglz, xmrbgflcl, xvciuaqxz, ydfqqlfaw, zyaaqnj\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ bvpraxkro,cskek,czvtb,dppju,faguxnydi,fajsfw,fgfuapwnd,hzckgot,kxrwo,lvqfcmzbi,mefaro,mipgiey,myjfpjzjce,ngaduzii,oltnvlcnj,sqima,tavwlyicus,uctrbf,wujvglz,xmrbgflcl,xvciuaqxz,ydfqqlfaw,zyaaqnj\n", + " : Should be bvpraxkro,cskek,czvtb,dppju,faguxnydi,fajsfw,fgfuapwnd,hzckgot,kxrwo,lvqfcmzbi,mefaro,mipgiey,myjfpjzjce,ngaduzii,oltnvlcnj,sqima,tavwlyicus,uctrbf,wujvglz,xmrbgflcl,xvciuaqxz,ydfqqlfaw,zyaaqnj\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cqdoiap, ctaiw, cxqyzaq, dfcsaad, gcvtoi, gzrl, j[44 chars]qrey' != 'cqdoiap,ctaiw,cxqyzaq,dfcsaad,gcvtoi,gzrl,jbagnlw[33 chars]qrey'\n", + "- cqdoiap, ctaiw, cxqyzaq, dfcsaad, gcvtoi, gzrl, jbagnlwqjv, kbuxwsw, rqrew, skztdqjc, toac, yqrey\n", + "? - - - - - - - - - - -\n", + "+ cqdoiap,ctaiw,cxqyzaq,dfcsaad,gcvtoi,gzrl,jbagnlwqjv,kbuxwsw,rqrew,skztdqjc,toac,yqrey\n", + " : Should be cqdoiap,ctaiw,cxqyzaq,dfcsaad,gcvtoi,gzrl,jbagnlwqjv,kbuxwsw,rqrew,skztdqjc,toac,yqrey\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'dqcsjhaeog, dzygzgmfs, eblg, eojyld, hlam, hmzfbbfxx[69 chars]xhuy' != 'dqcsjhaeog,dzygzgmfs,eblg,eojyld,hlam,hmzfbbfxx,ikcn[56 chars]xhuy'\n", + "- dqcsjhaeog, dzygzgmfs, eblg, eojyld, hlam, hmzfbbfxx, ikcnoto, jpbobkcg, jvqzj, kusudwezuf, mjgwjsawqv, qmpxm, rapcbltc, xhuy\n", + "? - - - - - - - - - - - - -\n", + "+ dqcsjhaeog,dzygzgmfs,eblg,eojyld,hlam,hmzfbbfxx,ikcnoto,jpbobkcg,jvqzj,kusudwezuf,mjgwjsawqv,qmpxm,rapcbltc,xhuy\n", + " : Should be dqcsjhaeog,dzygzgmfs,eblg,eojyld,hlam,hmzfbbfxx,ikcnoto,jpbobkcg,jvqzj,kusudwezuf,mjgwjsawqv,qmpxm,rapcbltc,xhuy\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'afiqnjzy, atgaszl, btbtl, bxvvr, ffbfwr, gety, gsr[142 chars]xhea' != 'afiqnjzy,atgaszl,btbtl,bxvvr,ffbfwr,gety,gsrooigmn[119 chars]xhea'\n", + "- afiqnjzy, atgaszl, btbtl, bxvvr, ffbfwr, gety, gsrooigmn, imerhvm, ksgrrx, ktsimpy, ltnj, lzkzwip, pqkzod, prqcb, pzgguxfxx, qgwcg, rikfxy, rlwntd, rspdjy, rurql, swmdyf, utumhhez, wtllb, xkvxxhea\n", + "? - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ afiqnjzy,atgaszl,btbtl,bxvvr,ffbfwr,gety,gsrooigmn,imerhvm,ksgrrx,ktsimpy,ltnj,lzkzwip,pqkzod,prqcb,pzgguxfxx,qgwcg,rikfxy,rlwntd,rspdjy,rurql,swmdyf,utumhhez,wtllb,xkvxxhea\n", + " : Should be afiqnjzy,atgaszl,btbtl,bxvvr,ffbfwr,gety,gsrooigmn,imerhvm,ksgrrx,ktsimpy,ltnj,lzkzwip,pqkzod,prqcb,pzgguxfxx,qgwcg,rikfxy,rlwntd,rspdjy,rurql,swmdyf,utumhhez,wtllb,xkvxxhea\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'gterowsaa, jkedze, mupq, puuw, skdy, snudjb, uydmgg[24 chars]dird' != 'gterowsaa,jkedze,mupq,puuw,skdy,snudjb,uydmggfq,vcl[15 chars]dird'\n", + "- gterowsaa, jkedze, mupq, puuw, skdy, snudjb, uydmggfq, vcli, vshovpu, xwdrqdird\n", + "? - - - - - - - - -\n", + "+ gterowsaa,jkedze,mupq,puuw,skdy,snudjb,uydmggfq,vcli,vshovpu,xwdrqdird\n", + " : Should be gterowsaa,jkedze,mupq,puuw,skdy,snudjb,uydmggfq,vcli,vshovpu,xwdrqdird\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aeiotksg, cpayl, cznxdyqio, gyatejcp, ikhykb, ldui[117 chars]tdmf' != 'aeiotksg,cpayl,cznxdyqio,gyatejcp,ikhykb,ldui,lfof[98 chars]tdmf'\n", + "- aeiotksg, cpayl, cznxdyqio, gyatejcp, ikhykb, ldui, lfoft, lmoodpxee, njxykzoe, oxvdnrwgf, pbsxoom, tgainlmpa, trnr, tsfr, unwrk, uwtnjo, wcizkm, xmksxbk, ygapjvj, znltdmf\n", + "? - - - - - - - - - - - - - - - - - - -\n", + "+ aeiotksg,cpayl,cznxdyqio,gyatejcp,ikhykb,ldui,lfoft,lmoodpxee,njxykzoe,oxvdnrwgf,pbsxoom,tgainlmpa,trnr,tsfr,unwrk,uwtnjo,wcizkm,xmksxbk,ygapjvj,znltdmf\n", + " : Should be aeiotksg,cpayl,cznxdyqio,gyatejcp,ikhykb,ldui,lfoft,lmoodpxee,njxykzoe,oxvdnrwgf,pbsxoom,tgainlmpa,trnr,tsfr,unwrk,uwtnjo,wcizkm,xmksxbk,ygapjvj,znltdmf\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cfdzn, enebbpabe, hjran, hvvxs, jimqlhyc, jrbdw[71 chars]truj' != 'cfdzn,enebbpabe,hjran,hvvxs,jimqlhyc,jrbdwnp,le[58 chars]truj'\n", + "- cfdzn, enebbpabe, hjran, hvvxs, jimqlhyc, jrbdwnp, leiw, ouvrevrjtx, qivuyt, quayiaytxm, rgebfyk, sctibndv, vavv, vitctruj\n", + "? - - - - - - - - - - - - -\n", + "+ cfdzn,enebbpabe,hjran,hvvxs,jimqlhyc,jrbdwnp,leiw,ouvrevrjtx,qivuyt,quayiaytxm,rgebfyk,sctibndv,vavv,vitctruj\n", + " : Should be cfdzn,enebbpabe,hjran,hvvxs,jimqlhyc,jrbdwnp,leiw,ouvrevrjtx,qivuyt,quayiaytxm,rgebfyk,sctibndv,vavv,vitctruj\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'abqhfglsh, ezhzy, jhufj, nbjouazp, nerroymd, rkux, [30 chars]riqm' != 'abqhfglsh,ezhzy,jhufj,nbjouazp,nerroymd,rkux,thcldf[21 chars]riqm'\n", + "- abqhfglsh, ezhzy, jhufj, nbjouazp, nerroymd, rkux, thcldf, wiiwpz, zlfhgtmgh, zufriqm\n", + "? - - - - - - - - -\n", + "+ abqhfglsh,ezhzy,jhufj,nbjouazp,nerroymd,rkux,thcldf,wiiwpz,zlfhgtmgh,zufriqm\n", + " : Should be abqhfglsh,ezhzy,jhufj,nbjouazp,nerroymd,rkux,thcldf,wiiwpz,zlfhgtmgh,zufriqm\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'crwboobs, edhyv, lkclx, qdstwb, qfilsy, smse, snxe[25 chars]yedw' != 'crwboobs,edhyv,lkclx,qdstwb,qfilsy,smse,snxeiawm,t[16 chars]yedw'\n", + "- crwboobs, edhyv, lkclx, qdstwb, qfilsy, smse, snxeiawm, tbwqo, tswrpbyfhf, yedw\n", + "? - - - - - - - - -\n", + "+ crwboobs,edhyv,lkclx,qdstwb,qfilsy,smse,snxeiawm,tbwqo,tswrpbyfhf,yedw\n", + " : Should be crwboobs,edhyv,lkclx,qdstwb,qfilsy,smse,snxeiawm,tbwqo,tswrpbyfhf,yedw\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bhmakjl, bzydbysyz, ciryoij, cnzqdl, dlxlyobs, dr[132 chars]mkfs' != 'bhmakjl,bzydbysyz,ciryoij,cnzqdl,dlxlyobs,drginkn[112 chars]mkfs'\n", + "- bhmakjl, bzydbysyz, ciryoij, cnzqdl, dlxlyobs, drginkn, eguxm, fblrzf, klsuyadiw, kqup, lzepn, nablc, pbcvosdoc, qbdrwi, qquknaeplg, rkthbnluo, tlfyhpwq, tyspl, tzjdyry, uwwe, zpbgumkfs\n", + "? - - - - - - - - - - - - - - - - - - - -\n", + "+ bhmakjl,bzydbysyz,ciryoij,cnzqdl,dlxlyobs,drginkn,eguxm,fblrzf,klsuyadiw,kqup,lzepn,nablc,pbcvosdoc,qbdrwi,qquknaeplg,rkthbnluo,tlfyhpwq,tyspl,tzjdyry,uwwe,zpbgumkfs\n", + " : Should be bhmakjl,bzydbysyz,ciryoij,cnzqdl,dlxlyobs,drginkn,eguxm,fblrzf,klsuyadiw,kqup,lzepn,nablc,pbcvosdoc,qbdrwi,qquknaeplg,rkthbnluo,tlfyhpwq,tyspl,tzjdyry,uwwe,zpbgumkfs\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bxtz, dqiajywst, gbmp, jywnzyespn, kfojtyih, k[42 chars]icyh' != 'bxtz,dqiajywst,gbmp,jywnzyespn,kfojtyih,kqogad[33 chars]icyh'\n", + "- bxtz, dqiajywst, gbmp, jywnzyespn, kfojtyih, kqogadwrp, lsoetbegjs, pbhfff, yvytyczyu, zicyh\n", + "? - - - - - - - - -\n", + "+ bxtz,dqiajywst,gbmp,jywnzyespn,kfojtyih,kqogadwrp,lsoetbegjs,pbhfff,yvytyczyu,zicyh\n", + " : Should be bxtz,dqiajywst,gbmp,jywnzyespn,kfojtyih,kqogadwrp,lsoetbegjs,pbhfff,yvytyczyu,zicyh\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cniz, dpkz, oyrdstpm, pepg, pfhousuo, pqqj, pt[54 chars]ubhm' != 'cniz,dpkz,oyrdstpm,pepg,pfhousuo,pqqj,ptguaa,r[41 chars]ubhm'\n", + "- cniz, dpkz, oyrdstpm, pepg, pfhousuo, pqqj, ptguaa, rdfs, sgak, vqhr, wkctauazx, ypyvg, ywizzwc, zaeubhm\n", + "? - - - - - - - - - - - - -\n", + "+ cniz,dpkz,oyrdstpm,pepg,pfhousuo,pqqj,ptguaa,rdfs,sgak,vqhr,wkctauazx,ypyvg,ywizzwc,zaeubhm\n", + " : Should be cniz,dpkz,oyrdstpm,pepg,pfhousuo,pqqj,ptguaa,rdfs,sgak,vqhr,wkctauazx,ypyvg,ywizzwc,zaeubhm\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'dugqhwccg, iowpio, mcntvntter, uxsmgvgoo' != 'dugqhwccg,iowpio,mcntvntter,uxsmgvgoo'\n", + "- dugqhwccg, iowpio, mcntvntter, uxsmgvgoo\n", + "? - - -\n", + "+ dugqhwccg,iowpio,mcntvntter,uxsmgvgoo\n", + " : Should be dugqhwccg,iowpio,mcntvntter,uxsmgvgoo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'arwtxsw, cufn, dcnurxri, dpimx, eesm, egcb, gdsri[161 chars]upxr' != 'arwtxsw,cufn,dcnurxri,dpimx,eesm,egcb,gdsrii,idjl[137 chars]upxr'\n", + "- arwtxsw, cufn, dcnurxri, dpimx, eesm, egcb, gdsrii, idjlthqzs, juofk, krcz, mchslxcap, mdwrzjqx, mmfulh, mmizs, mxdqmm, nwmzkfnmth, ohgs, phrenag, qkhgrkkmxx, qsnpobvjd, uzrfzwri, vqqs, yebxndjo, ypltlveyq, zviupxr\n", + "? - - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ arwtxsw,cufn,dcnurxri,dpimx,eesm,egcb,gdsrii,idjlthqzs,juofk,krcz,mchslxcap,mdwrzjqx,mmfulh,mmizs,mxdqmm,nwmzkfnmth,ohgs,phrenag,qkhgrkkmxx,qsnpobvjd,uzrfzwri,vqqs,yebxndjo,ypltlveyq,zviupxr\n", + " : Should be arwtxsw,cufn,dcnurxri,dpimx,eesm,egcb,gdsrii,idjlthqzs,juofk,krcz,mchslxcap,mdwrzjqx,mmfulh,mmizs,mxdqmm,nwmzkfnmth,ohgs,phrenag,qkhgrkkmxx,qsnpobvjd,uzrfzwri,vqqs,yebxndjo,ypltlveyq,zviupxr\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'jevs, kkwbbav, kzhgkaedte, oljyc, rypwdk, tlkxvmxopy, vgoc, zzoxl' != 'jevs,kkwbbav,kzhgkaedte,oljyc,rypwdk,tlkxvmxopy,vgoc,zzoxl'\n", + "- jevs, kkwbbav, kzhgkaedte, oljyc, rypwdk, tlkxvmxopy, vgoc, zzoxl\n", + "? - - - - - - -\n", + "+ jevs,kkwbbav,kzhgkaedte,oljyc,rypwdk,tlkxvmxopy,vgoc,zzoxl\n", + " : Should be jevs,kkwbbav,kzhgkaedte,oljyc,rypwdk,tlkxvmxopy,vgoc,zzoxl\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bnhmlgqczq, bxqnilf, ceatfkmwm, emnvs, hfqi, hmmcwis[164 chars]vxlz' != 'bnhmlgqczq,bxqnilf,ceatfkmwm,emnvs,hfqi,hmmcwisocm,i[140 chars]vxlz'\n", + "- bnhmlgqczq, bxqnilf, ceatfkmwm, emnvs, hfqi, hmmcwisocm, iktjjeqd, iuwsox, loif, madfoktl, mmvvsovzkp, msgrna, mwafjvlkti, qkrakac, qyay, shzfeb, ttoo, ugub, vbssdlm, vzpl, wdzsuslst, wenotqxyex, wsljgvjt, xqlw, ygjhvxlz\n", + "? - - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ bnhmlgqczq,bxqnilf,ceatfkmwm,emnvs,hfqi,hmmcwisocm,iktjjeqd,iuwsox,loif,madfoktl,mmvvsovzkp,msgrna,mwafjvlkti,qkrakac,qyay,shzfeb,ttoo,ugub,vbssdlm,vzpl,wdzsuslst,wenotqxyex,wsljgvjt,xqlw,ygjhvxlz\n", + " : Should be bnhmlgqczq,bxqnilf,ceatfkmwm,emnvs,hfqi,hmmcwisocm,iktjjeqd,iuwsox,loif,madfoktl,mmvvsovzkp,msgrna,mwafjvlkti,qkrakac,qyay,shzfeb,ttoo,ugub,vbssdlm,vzpl,wdzsuslst,wenotqxyex,wsljgvjt,xqlw,ygjhvxlz\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'ablz, ddfszt, dwui, fjctajksk, hkrrvacmwu, jnw[128 chars]vshz' != 'ablz,ddfszt,dwui,fjctajksk,hkrrvacmwu,jnwivfkr[108 chars]vshz'\n", + "- ablz, ddfszt, dwui, fjctajksk, hkrrvacmwu, jnwivfkr, jojxp, kbrc, kwfylaykx, maajgsvsxi, mcovacvr, nept, nhbx, ofginx, oimgsdcc, okewx, oripbb, qxcnnlws, sgpx, utoosk, vupxinvshz\n", + "? - - - - - - - - - - - - - - - - - - - -\n", + "+ ablz,ddfszt,dwui,fjctajksk,hkrrvacmwu,jnwivfkr,jojxp,kbrc,kwfylaykx,maajgsvsxi,mcovacvr,nept,nhbx,ofginx,oimgsdcc,okewx,oripbb,qxcnnlws,sgpx,utoosk,vupxinvshz\n", + " : Should be ablz,ddfszt,dwui,fjctajksk,hkrrvacmwu,jnwivfkr,jojxp,kbrc,kwfylaykx,maajgsvsxi,mcovacvr,nept,nhbx,ofginx,oimgsdcc,okewx,oripbb,qxcnnlws,sgpx,utoosk,vupxinvshz\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'agqqmkfrn, cddddbkv, hmuft, krfvpol, lghvb, vtmrrtnjbb, ztoswdycx' != 'agqqmkfrn,cddddbkv,hmuft,krfvpol,lghvb,vtmrrtnjbb,ztoswdycx'\n", + "- agqqmkfrn, cddddbkv, hmuft, krfvpol, lghvb, vtmrrtnjbb, ztoswdycx\n", + "? - - - - - -\n", + "+ agqqmkfrn,cddddbkv,hmuft,krfvpol,lghvb,vtmrrtnjbb,ztoswdycx\n", + " : Should be agqqmkfrn,cddddbkv,hmuft,krfvpol,lghvb,vtmrrtnjbb,ztoswdycx\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'abon, afkoqanbxi, ayfnzkfk, cykeol, eapcbrauj,[132 chars]tjan' != 'abon,afkoqanbxi,ayfnzkfk,cykeol,eapcbrauj,iryg[112 chars]tjan'\n", + "- abon, afkoqanbxi, ayfnzkfk, cykeol, eapcbrauj, irygqaj, jkhdab, jwordtlxvk, maejtzn, muitxk, nfpdsuhc, qazgqr, qcyusmxqrc, swkrfpn, tgqmzhzv, tqer, xdpu, xngzwd, zgxi, zhpcybk, ztjan\n", + "? - - - - - - - - - - - - - - - - - - - -\n", + "+ abon,afkoqanbxi,ayfnzkfk,cykeol,eapcbrauj,irygqaj,jkhdab,jwordtlxvk,maejtzn,muitxk,nfpdsuhc,qazgqr,qcyusmxqrc,swkrfpn,tgqmzhzv,tqer,xdpu,xngzwd,zgxi,zhpcybk,ztjan\n", + " : Should be abon,afkoqanbxi,ayfnzkfk,cykeol,eapcbrauj,irygqaj,jkhdab,jwordtlxvk,maejtzn,muitxk,nfpdsuhc,qazgqr,qcyusmxqrc,swkrfpn,tgqmzhzv,tqer,xdpu,xngzwd,zgxi,zhpcybk,ztjan\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'ajrmcxadqa, asjpnzu, caxral, ccujptkjcd, ercaecvnl, [123 chars]uczo' != 'ajrmcxadqa,asjpnzu,caxral,ccujptkjcd,ercaecvnl,fnbcf[106 chars]uczo'\n", + "- ajrmcxadqa, asjpnzu, caxral, ccujptkjcd, ercaecvnl, fnbcfkcof, laiaqyfajb, oknwv, pcwugu, qbqelzslqr, qgjc, qitktwfado, sezndoby, tskad, ucnhbcfah, xmrxknerd, xtrwulwfa, yssbruczo\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ ajrmcxadqa,asjpnzu,caxral,ccujptkjcd,ercaecvnl,fnbcfkcof,laiaqyfajb,oknwv,pcwugu,qbqelzslqr,qgjc,qitktwfado,sezndoby,tskad,ucnhbcfah,xmrxknerd,xtrwulwfa,yssbruczo\n", + " : Should be ajrmcxadqa,asjpnzu,caxral,ccujptkjcd,ercaecvnl,fnbcfkcof,laiaqyfajb,oknwv,pcwugu,qbqelzslqr,qgjc,qitktwfado,sezndoby,tskad,ucnhbcfah,xmrxknerd,xtrwulwfa,yssbruczo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aewbugug, bmcst, dmdfdhqfyu, drlwcrria, ehits, eiv[174 chars]ruxe' != 'aewbugug,bmcst,dmdfdhqfyu,drlwcrria,ehits,eivuazzh[151 chars]ruxe'\n", + "- aewbugug, bmcst, dmdfdhqfyu, drlwcrria, ehits, eivuazzhp, gkwfloc, hopginph, ibjkzksxtm, itifeiv, iubuhmrkwm, iugc, joxgou, kxsjlbbxtq, mvvro, odvqoar, ofujvje, shztbzwt, sjyyhqtn, snwaosy, vjdxiigygv, yakqlifrv, ynjvdzb, yqruxe\n", + "+ aewbugug,bmcst,dmdfdhqfyu,drlwcrria,ehits,eivuazzhp,gkwfloc,hopginph,ibjkzksxtm,itifeiv,iubuhmrkwm,iugc,joxgou,kxsjlbbxtq,mvvro,odvqoar,ofujvje,shztbzwt,sjyyhqtn,snwaosy,vjdxiigygv,yakqlifrv,ynjvdzb,yqruxe\n", + " : Should be aewbugug,bmcst,dmdfdhqfyu,drlwcrria,ehits,eivuazzhp,gkwfloc,hopginph,ibjkzksxtm,itifeiv,iubuhmrkwm,iugc,joxgou,kxsjlbbxtq,mvvro,odvqoar,ofujvje,shztbzwt,sjyyhqtn,snwaosy,vjdxiigygv,yakqlifrv,ynjvdzb,yqruxe\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cjjxvvvpjs, cyhxwdiam, hsdwgpgsd, iqvlqvrt, kapke, m[23 chars]iixo' != 'cjjxvvvpjs,cyhxwdiam,hsdwgpgsd,iqvlqvrt,kapke,motmbd[16 chars]iixo'\n", + "- cjjxvvvpjs, cyhxwdiam, hsdwgpgsd, iqvlqvrt, kapke, motmbdyrup, xlorz, ylqakiixo\n", + "? - - - - - - -\n", + "+ cjjxvvvpjs,cyhxwdiam,hsdwgpgsd,iqvlqvrt,kapke,motmbdyrup,xlorz,ylqakiixo\n", + " : Should be cjjxvvvpjs,cyhxwdiam,hsdwgpgsd,iqvlqvrt,kapke,motmbdyrup,xlorz,ylqakiixo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'atsrd, bezgtvylos, bklzdkbotj, cgund, dehmv, fp[144 chars]zoeo' != 'atsrd,bezgtvylos,bklzdkbotj,cgund,dehmv,fpydbw,[122 chars]zoeo'\n", + "- atsrd, bezgtvylos, bklzdkbotj, cgund, dehmv, fpydbw, ggbt, gythzqyedd, hmqhz, jrtexajvn, ktpttlple, kxqvontcbo, lsjz, ltclyy, mjhtzs, tadsvdal, uigw, usoxbf, vsmbzvqbd, wejfpla, xuoz, yhwwj, zoeo\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ atsrd,bezgtvylos,bklzdkbotj,cgund,dehmv,fpydbw,ggbt,gythzqyedd,hmqhz,jrtexajvn,ktpttlple,kxqvontcbo,lsjz,ltclyy,mjhtzs,tadsvdal,uigw,usoxbf,vsmbzvqbd,wejfpla,xuoz,yhwwj,zoeo\n", + " : Should be atsrd,bezgtvylos,bklzdkbotj,cgund,dehmv,fpydbw,ggbt,gythzqyedd,hmqhz,jrtexajvn,ktpttlple,kxqvontcbo,lsjz,ltclyy,mjhtzs,tadsvdal,uigw,usoxbf,vsmbzvqbd,wejfpla,xuoz,yhwwj,zoeo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'mfwsuzetuo, nqyqssnlc, nrwnqbfy, oysbsuj, wcjftjg' != 'mfwsuzetuo,nqyqssnlc,nrwnqbfy,oysbsuj,wcjftjg'\n", + "- mfwsuzetuo, nqyqssnlc, nrwnqbfy, oysbsuj, wcjftjg\n", + "? - - - -\n", + "+ mfwsuzetuo,nqyqssnlc,nrwnqbfy,oysbsuj,wcjftjg\n", + " : Should be mfwsuzetuo,nqyqssnlc,nrwnqbfy,oysbsuj,wcjftjg\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'ccucgy, dkexqk, duedy, ecwnztxg, nnqvcly, ojgv, [43 chars]iine' != 'ccucgy,dkexqk,duedy,ecwnztxg,nnqvcly,ojgv,rahpzo[33 chars]iine'\n", + "- ccucgy, dkexqk, duedy, ecwnztxg, nnqvcly, ojgv, rahpzoerj, ravl, rglapjhuzo, vpvwymhy, xqmsiine\n", + "? - - - - - - - - - -\n", + "+ ccucgy,dkexqk,duedy,ecwnztxg,nnqvcly,ojgv,rahpzoerj,ravl,rglapjhuzo,vpvwymhy,xqmsiine\n", + " : Should be ccucgy,dkexqk,duedy,ecwnztxg,nnqvcly,ojgv,rahpzoerj,ravl,rglapjhuzo,vpvwymhy,xqmsiine\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bfss, gxpxq, lznpgx, nldwhrrqxp, sdcqvgssa, txewowxf, wdux, ygqsghrb' != 'bfss,gxpxq,lznpgx,nldwhrrqxp,sdcqvgssa,txewowxf,wdux,ygqsghrb'\n", + "- bfss, gxpxq, lznpgx, nldwhrrqxp, sdcqvgssa, txewowxf, wdux, ygqsghrb\n", + "? - - - - - - -\n", + "+ bfss,gxpxq,lznpgx,nldwhrrqxp,sdcqvgssa,txewowxf,wdux,ygqsghrb\n", + " : Should be bfss,gxpxq,lznpgx,nldwhrrqxp,sdcqvgssa,txewowxf,wdux,ygqsghrb\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bxmiugw, bydhb, cxexvpokj, domcpw, fhrwygdgy, lpj[67 chars]mykv' != 'bxmiugw,bydhb,cxexvpokj,domcpw,fhrwygdgy,lpjzocj,[54 chars]mykv'\n", + "- bxmiugw, bydhb, cxexvpokj, domcpw, fhrwygdgy, lpjzocj, nikkg, pgyouuilq, piqhqj, qarpeqs, rwglgaiei, ubaex, vckx, xymykv\n", + "? - - - - - - - - - - - - -\n", + "+ bxmiugw,bydhb,cxexvpokj,domcpw,fhrwygdgy,lpjzocj,nikkg,pgyouuilq,piqhqj,qarpeqs,rwglgaiei,ubaex,vckx,xymykv\n", + " : Should be bxmiugw,bydhb,cxexvpokj,domcpw,fhrwygdgy,lpjzocj,nikkg,pgyouuilq,piqhqj,qarpeqs,rwglgaiei,ubaex,vckx,xymykv\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bdui, cmhwhnt, dueqiyuyxe, gatr, hdxhciqj, hma[95 chars]zjcl' != 'bdui,cmhwhnt,dueqiyuyxe,gatr,hdxhciqj,hmagn,io[79 chars]zjcl'\n", + "- bdui, cmhwhnt, dueqiyuyxe, gatr, hdxhciqj, hmagn, iosrbcfkv, jfdtke, jreefqvpt, mllgkfqt, qolviwih, qqzu, rhvhhdlv, rlxirleo, sxidyt, wylyz, zjcl\n", + "? - - - - - - - - - - - - - - - -\n", + "+ bdui,cmhwhnt,dueqiyuyxe,gatr,hdxhciqj,hmagn,iosrbcfkv,jfdtke,jreefqvpt,mllgkfqt,qolviwih,qqzu,rhvhhdlv,rlxirleo,sxidyt,wylyz,zjcl\n", + " : Should be bdui,cmhwhnt,dueqiyuyxe,gatr,hdxhciqj,hmagn,iosrbcfkv,jfdtke,jreefqvpt,mllgkfqt,qolviwih,qqzu,rhvhhdlv,rlxirleo,sxidyt,wylyz,zjcl\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aowkk, atxige, bqkzo, evsovqs, fprbwspmpp, ivvu[99 chars]yqmi' != 'aowkk,atxige,bqkzo,evsovqs,fprbwspmpp,ivvuw,kef[83 chars]yqmi'\n", + "- aowkk, atxige, bqkzo, evsovqs, fprbwspmpp, ivvuw, kefukhaoyh, kvtfckduai, lcrd, oxtdlwvv, pnbcz, qjvwabtxr, rapeiwzquj, tebj, xodkbdp, ybxfiurbt, yqmi\n", + "? - - - - - - - - - - - - - - - -\n", + "+ aowkk,atxige,bqkzo,evsovqs,fprbwspmpp,ivvuw,kefukhaoyh,kvtfckduai,lcrd,oxtdlwvv,pnbcz,qjvwabtxr,rapeiwzquj,tebj,xodkbdp,ybxfiurbt,yqmi\n", + " : Should be aowkk,atxige,bqkzo,evsovqs,fprbwspmpp,ivvuw,kefukhaoyh,kvtfckduai,lcrd,oxtdlwvv,pnbcz,qjvwabtxr,rapeiwzquj,tebj,xodkbdp,ybxfiurbt,yqmi\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cpgrteyfq, dtwsqhmbbf, laibvqzjp, pbahgxic, rjlbjyt, xfgsyhmh, yzgmp' != 'cpgrteyfq,dtwsqhmbbf,laibvqzjp,pbahgxic,rjlbjyt,xfgsyhmh,yzgmp'\n", + "- cpgrteyfq, dtwsqhmbbf, laibvqzjp, pbahgxic, rjlbjyt, xfgsyhmh, yzgmp\n", + "? - - - - - -\n", + "+ cpgrteyfq,dtwsqhmbbf,laibvqzjp,pbahgxic,rjlbjyt,xfgsyhmh,yzgmp\n", + " : Should be cpgrteyfq,dtwsqhmbbf,laibvqzjp,pbahgxic,rjlbjyt,xfgsyhmh,yzgmp\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'atsw, bnfo, dcjhpkxf, dephoaa, eypobybhkj, gjx[132 chars]ytum' != 'atsw,bnfo,dcjhpkxf,dephoaa,eypobybhkj,gjxn,gte[113 chars]ytum'\n", + "- atsw, bnfo, dcjhpkxf, dephoaa, eypobybhkj, gjxn, gtevdvwoy, gvxjrcaq, khwyky, lgebpbywwk, mnpg, neghxuw, nmkyiyrwup, nwzwalph, oiuqzelevn, qsuevpmpz, rbdkjqegv, uzxuxdq, wbyvkm, ytum\n", + "? - - - - - - - - - - - - - - - - - - -\n", + "+ atsw,bnfo,dcjhpkxf,dephoaa,eypobybhkj,gjxn,gtevdvwoy,gvxjrcaq,khwyky,lgebpbywwk,mnpg,neghxuw,nmkyiyrwup,nwzwalph,oiuqzelevn,qsuevpmpz,rbdkjqegv,uzxuxdq,wbyvkm,ytum\n", + " : Should be atsw,bnfo,dcjhpkxf,dephoaa,eypobybhkj,gjxn,gtevdvwoy,gvxjrcaq,khwyky,lgebpbywwk,mnpg,neghxuw,nmkyiyrwup,nwzwalph,oiuqzelevn,qsuevpmpz,rbdkjqegv,uzxuxdq,wbyvkm,ytum\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'afeoinor, afkcx, azuqcyp, bmjnu, dekt, eutwr, fasb[84 chars]nluy' != 'afeoinor,afkcx,azuqcyp,bmjnu,dekt,eutwr,fasbcz,frf[69 chars]nluy'\n", + "- afeoinor, afkcx, azuqcyp, bmjnu, dekt, eutwr, fasbcz, frfoukakxw, groouuci, hcouxozsge, hzxef, lscpf, lzbbyn, oftyweb, wpiygnvow, yzganluy\n", + "? - - - - - - - - - - - - - - -\n", + "+ afeoinor,afkcx,azuqcyp,bmjnu,dekt,eutwr,fasbcz,frfoukakxw,groouuci,hcouxozsge,hzxef,lscpf,lzbbyn,oftyweb,wpiygnvow,yzganluy\n", + " : Should be afeoinor,afkcx,azuqcyp,bmjnu,dekt,eutwr,fasbcz,frfoukakxw,groouuci,hcouxozsge,hzxef,lscpf,lzbbyn,oftyweb,wpiygnvow,yzganluy\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bbwvvbsmwg, bpyghxqvge, jkpjyamfci, mqzpyqofvq, odaitsctdz, wnkk, xsyhlm' != 'bbwvvbsmwg,bpyghxqvge,jkpjyamfci,mqzpyqofvq,odaitsctdz,wnkk,xsyhlm'\n", + "- bbwvvbsmwg, bpyghxqvge, jkpjyamfci, mqzpyqofvq, odaitsctdz, wnkk, xsyhlm\n", + "? - - - - - -\n", + "+ bbwvvbsmwg,bpyghxqvge,jkpjyamfci,mqzpyqofvq,odaitsctdz,wnkk,xsyhlm\n", + " : Should be bbwvvbsmwg,bpyghxqvge,jkpjyamfci,mqzpyqofvq,odaitsctdz,wnkk,xsyhlm\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'ajngwz, bgdbxrrx, hkkcbg, mvhpwyhfue, sncep, xrvjulem' != 'ajngwz,bgdbxrrx,hkkcbg,mvhpwyhfue,sncep,xrvjulem'\n", + "- ajngwz, bgdbxrrx, hkkcbg, mvhpwyhfue, sncep, xrvjulem\n", + "? - - - - -\n", + "+ ajngwz,bgdbxrrx,hkkcbg,mvhpwyhfue,sncep,xrvjulem\n", + " : Should be ajngwz,bgdbxrrx,hkkcbg,mvhpwyhfue,sncep,xrvjulem\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'abshz, aeefefhgi, dophvb, dqxytulvd, ejqt, hhrk[123 chars]nzzn' != 'abshz,aeefefhgi,dophvb,dqxytulvd,ejqt,hhrkgkpik[106 chars]nzzn'\n", + "- abshz, aeefefhgi, dophvb, dqxytulvd, ejqt, hhrkgkpiky, keijxy, kgnjptidjj, kizhwgzchw, kxyeeyxvph, oxvdwfw, pihgldqmyn, psyqcbc, snuzuwb, spmkbkkp, vefgxsa, vljgolatq, zynzzn\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ abshz,aeefefhgi,dophvb,dqxytulvd,ejqt,hhrkgkpiky,keijxy,kgnjptidjj,kizhwgzchw,kxyeeyxvph,oxvdwfw,pihgldqmyn,psyqcbc,snuzuwb,spmkbkkp,vefgxsa,vljgolatq,zynzzn\n", + " : Should be abshz,aeefefhgi,dophvb,dqxytulvd,ejqt,hhrkgkpiky,keijxy,kgnjptidjj,kizhwgzchw,kxyeeyxvph,oxvdwfw,pihgldqmyn,psyqcbc,snuzuwb,spmkbkkp,vefgxsa,vljgolatq,zynzzn\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bwmlajgf, czznjifsmt, ddbgwrrw, iiik, jkyot, mpsvx[58 chars]vdqn' != 'bwmlajgf,czznjifsmt,ddbgwrrw,iiik,jkyot,mpsvxaari,[46 chars]vdqn'\n", + "- bwmlajgf, czznjifsmt, ddbgwrrw, iiik, jkyot, mpsvxaari, npwttu, oqchgx, poewtg, qcdfgs, toyowe, uupepcurzz, vdqn\n", + "? - - - - - - - - - - - -\n", + "+ bwmlajgf,czznjifsmt,ddbgwrrw,iiik,jkyot,mpsvxaari,npwttu,oqchgx,poewtg,qcdfgs,toyowe,uupepcurzz,vdqn\n", + " : Should be bwmlajgf,czznjifsmt,ddbgwrrw,iiik,jkyot,mpsvxaari,npwttu,oqchgx,poewtg,qcdfgs,toyowe,uupepcurzz,vdqn\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'drwn, eksq, ilhlduvs, kaptnozym, mibf, ndrtkrd[56 chars]gnak' != 'drwn,eksq,ilhlduvs,kaptnozym,mibf,ndrtkrd,ozgi[45 chars]gnak'\n", + "- drwn, eksq, ilhlduvs, kaptnozym, mibf, ndrtkrd, ozgiysqe, uoonyn, uthakpoirg, uwkfxjuh, wehlettvq, zllgnak\n", + "? - - - - - - - - - - -\n", + "+ drwn,eksq,ilhlduvs,kaptnozym,mibf,ndrtkrd,ozgiysqe,uoonyn,uthakpoirg,uwkfxjuh,wehlettvq,zllgnak\n", + " : Should be drwn,eksq,ilhlduvs,kaptnozym,mibf,ndrtkrd,ozgiysqe,uoonyn,uthakpoirg,uwkfxjuh,wehlettvq,zllgnak\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'affydgou, anzb, bmjl, bujzdrgdg, dvwiohonus, fewat[157 chars]jxwz' != 'affydgou,anzb,bmjl,bujzdrgdg,dvwiohonus,fewatfo,hd[136 chars]jxwz'\n", + "- affydgou, anzb, bmjl, bujzdrgdg, dvwiohonus, fewatfo, hdiafjhbps, irvikfxbks, jwyggiq, kfefeyunp, ktrrcrl, lbkfozzlwj, lclvhl, mlsp, mvtpebkicq, surmukyxpl, toxy, uvhhqrzddh, xbufgr, yjdzhbzmfp, zcqsnot, zzyjxwz\n", + "? - - - - - - - - - - - - - - - - - - - - -\n", + "+ affydgou,anzb,bmjl,bujzdrgdg,dvwiohonus,fewatfo,hdiafjhbps,irvikfxbks,jwyggiq,kfefeyunp,ktrrcrl,lbkfozzlwj,lclvhl,mlsp,mvtpebkicq,surmukyxpl,toxy,uvhhqrzddh,xbufgr,yjdzhbzmfp,zcqsnot,zzyjxwz\n", + " : Should be affydgou,anzb,bmjl,bujzdrgdg,dvwiohonus,fewatfo,hdiafjhbps,irvikfxbks,jwyggiq,kfefeyunp,ktrrcrl,lbkfozzlwj,lclvhl,mlsp,mvtpebkicq,surmukyxpl,toxy,uvhhqrzddh,xbufgr,yjdzhbzmfp,zcqsnot,zzyjxwz\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cezsfkhbl, didrmwwm, dlync, flmgprfkml, fyntzeyxe, [98 chars]uowv' != 'cezsfkhbl,didrmwwm,dlync,flmgprfkml,fyntzeyxe,hwswz[83 chars]uowv'\n", + "- cezsfkhbl, didrmwwm, dlync, flmgprfkml, fyntzeyxe, hwswzfwueb, lrscc, mvvdevlgp, pkdzrpf, sfva, termb, ttbjpmdjy, wafan, wgamdorgvk, xsgiqtpdz, zvbmyuowv\n", + "? - - - - - - - - - - - - - - -\n", + "+ cezsfkhbl,didrmwwm,dlync,flmgprfkml,fyntzeyxe,hwswzfwueb,lrscc,mvvdevlgp,pkdzrpf,sfva,termb,ttbjpmdjy,wafan,wgamdorgvk,xsgiqtpdz,zvbmyuowv\n", + " : Should be cezsfkhbl,didrmwwm,dlync,flmgprfkml,fyntzeyxe,hwswzfwueb,lrscc,mvvdevlgp,pkdzrpf,sfva,termb,ttbjpmdjy,wafan,wgamdorgvk,xsgiqtpdz,zvbmyuowv\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bheppgmr, hhayqebeml, irwohajwwi, pndsu, qvenzbq, zhxben' != 'bheppgmr,hhayqebeml,irwohajwwi,pndsu,qvenzbq,zhxben'\n", + "- bheppgmr, hhayqebeml, irwohajwwi, pndsu, qvenzbq, zhxben\n", + "? - - - - -\n", + "+ bheppgmr,hhayqebeml,irwohajwwi,pndsu,qvenzbq,zhxben\n", + " : Should be bheppgmr,hhayqebeml,irwohajwwi,pndsu,qvenzbq,zhxben\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'hnobuape, ixdrepo, jlbkfmrqy, jouchjyzb' != 'hnobuape,ixdrepo,jlbkfmrqy,jouchjyzb'\n", + "- hnobuape, ixdrepo, jlbkfmrqy, jouchjyzb\n", + "? - - -\n", + "+ hnobuape,ixdrepo,jlbkfmrqy,jouchjyzb\n", + " : Should be hnobuape,ixdrepo,jlbkfmrqy,jouchjyzb\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bxjfvvay, byqtdyee, dwewhb, imvkgmmz, pfyaslrv, qo[26 chars]ykgu' != 'bxjfvvay,byqtdyee,dwewhb,imvkgmmz,pfyaslrv,qohfegm[18 chars]ykgu'\n", + "- bxjfvvay, byqtdyee, dwewhb, imvkgmmz, pfyaslrv, qohfegmevc, trvaw, uamxod, uykgu\n", + "? - - - - - - - -\n", + "+ bxjfvvay,byqtdyee,dwewhb,imvkgmmz,pfyaslrv,qohfegmevc,trvaw,uamxod,uykgu\n", + " : Should be bxjfvvay,byqtdyee,dwewhb,imvkgmmz,pfyaslrv,qohfegmevc,trvaw,uamxod,uykgu\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'apil, cvyaxen, gzgrt, jhwh, khuyujs, khvcpcoyg[87 chars]zvpf' != 'apil,cvyaxen,gzgrt,jhwh,khuyujs,khvcpcoyg,ktxh[71 chars]zvpf'\n", + "- apil, cvyaxen, gzgrt, jhwh, khuyujs, khvcpcoyg, ktxhxnpw, oocsum, pwxqygmk, sewjeemq, tsdnz, vmmxp, vnpxrc, xgdrq, xhpy, xuucjbbhjz, zvpf\n", + "? - - - - - - - - - - - - - - - -\n", + "+ apil,cvyaxen,gzgrt,jhwh,khuyujs,khvcpcoyg,ktxhxnpw,oocsum,pwxqygmk,sewjeemq,tsdnz,vmmxp,vnpxrc,xgdrq,xhpy,xuucjbbhjz,zvpf\n", + " : Should be apil,cvyaxen,gzgrt,jhwh,khuyujs,khvcpcoyg,ktxhxnpw,oocsum,pwxqygmk,sewjeemq,tsdnz,vmmxp,vnpxrc,xgdrq,xhpy,xuucjbbhjz,zvpf\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bqirjdbikv, dyawgasst, jvdvgziwvw, vyokafjwx, wiocse, ywdi, zytfbppwsk' != 'bqirjdbikv,dyawgasst,jvdvgziwvw,vyokafjwx,wiocse,ywdi,zytfbppwsk'\n", + "- bqirjdbikv, dyawgasst, jvdvgziwvw, vyokafjwx, wiocse, ywdi, zytfbppwsk\n", + "? - - - - - -\n", + "+ bqirjdbikv,dyawgasst,jvdvgziwvw,vyokafjwx,wiocse,ywdi,zytfbppwsk\n", + " : Should be bqirjdbikv,dyawgasst,jvdvgziwvw,vyokafjwx,wiocse,ywdi,zytfbppwsk\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'btnhoovljd, fcqsztyils, fyddg, iteyzasxpn, kskyby, l[151 chars]thdf' != 'btnhoovljd,fcqsztyils,fyddg,iteyzasxpn,kskyby,lhtzl,[129 chars]thdf'\n", + "- btnhoovljd, fcqsztyils, fyddg, iteyzasxpn, kskyby, lhtzl, mnrj, oglgepk, pmqyu, pnrnp, ryymhrvapt, sgrqaadc, sopklrsx, tfujw, uaopheohs, untupopgfe, vgghrlgmv, vnbsemkasr, vynt, wmckz, wseg, xeedooa, xmmthdf\n", + "? - - - - - - - - - - - - - - - - - - - - - -\n", + "+ btnhoovljd,fcqsztyils,fyddg,iteyzasxpn,kskyby,lhtzl,mnrj,oglgepk,pmqyu,pnrnp,ryymhrvapt,sgrqaadc,sopklrsx,tfujw,uaopheohs,untupopgfe,vgghrlgmv,vnbsemkasr,vynt,wmckz,wseg,xeedooa,xmmthdf\n", + " : Should be btnhoovljd,fcqsztyils,fyddg,iteyzasxpn,kskyby,lhtzl,mnrj,oglgepk,pmqyu,pnrnp,ryymhrvapt,sgrqaadc,sopklrsx,tfujw,uaopheohs,untupopgfe,vgghrlgmv,vnbsemkasr,vynt,wmckz,wseg,xeedooa,xmmthdf\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'acie, cmifd, drcfgp, dvoanvaqft, elylfivm, eum[118 chars]ypee' != 'acie,cmifd,drcfgp,dvoanvaqft,elylfivm,eumtawos[100 chars]ypee'\n", + "- acie, cmifd, drcfgp, dvoanvaqft, elylfivm, eumtawos, giuykasldi, hcaezlz, hlgwl, iazlxejgl, kiabilrtpo, ldwfmrt, mqasnd, oaoztpu, obxlc, qqbf, ssvrkewh, txdxxqxc, vypee\n", + "? - - - - - - - - - - - - - - - - - -\n", + "+ acie,cmifd,drcfgp,dvoanvaqft,elylfivm,eumtawos,giuykasldi,hcaezlz,hlgwl,iazlxejgl,kiabilrtpo,ldwfmrt,mqasnd,oaoztpu,obxlc,qqbf,ssvrkewh,txdxxqxc,vypee\n", + " : Should be acie,cmifd,drcfgp,dvoanvaqft,elylfivm,eumtawos,giuykasldi,hcaezlz,hlgwl,iazlxejgl,kiabilrtpo,ldwfmrt,mqasnd,oaoztpu,obxlc,qqbf,ssvrkewh,txdxxqxc,vypee\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'diwm, dmuzx, emossqeibn, fgpdfv, fiaqgx, gpii,[155 chars]gccl' != 'diwm,dmuzx,emossqeibn,fgpdfv,fiaqgx,gpii,inojv[132 chars]gccl'\n", + "- diwm, dmuzx, emossqeibn, fgpdfv, fiaqgx, gpii, inojvy, jfdyq, jwmuzdh, kygafhe, kzbj, lktcjy, lsdsbupb, lvgmgs, owacaslxw, oxkxbmio, puspfwld, pvxrvlyu, qbwuxpvi, wukdbyqpsr, yidztt, zaywyepq, zfju, zxgccl\n", + "? - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ diwm,dmuzx,emossqeibn,fgpdfv,fiaqgx,gpii,inojvy,jfdyq,jwmuzdh,kygafhe,kzbj,lktcjy,lsdsbupb,lvgmgs,owacaslxw,oxkxbmio,puspfwld,pvxrvlyu,qbwuxpvi,wukdbyqpsr,yidztt,zaywyepq,zfju,zxgccl\n", + " : Should be diwm,dmuzx,emossqeibn,fgpdfv,fiaqgx,gpii,inojvy,jfdyq,jwmuzdh,kygafhe,kzbj,lktcjy,lsdsbupb,lvgmgs,owacaslxw,oxkxbmio,puspfwld,pvxrvlyu,qbwuxpvi,wukdbyqpsr,yidztt,zaywyepq,zfju,zxgccl\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'anwmdjub, ashtnpk, brgumx, chltw, cyktsje, dzlxzvu[100 chars]qiat' != 'anwmdjub,ashtnpk,brgumx,chltw,cyktsje,dzlxzvuv,hfm[83 chars]qiat'\n", + "- anwmdjub, ashtnpk, brgumx, chltw, cyktsje, dzlxzvuv, hfmxvxu, hylyemx, kovd, kvenp, lwmieu, muvqsgo, plne, sfdzf, vhla, xghbfvjwng, xzwliqlonx, yxxnjoqiat\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ anwmdjub,ashtnpk,brgumx,chltw,cyktsje,dzlxzvuv,hfmxvxu,hylyemx,kovd,kvenp,lwmieu,muvqsgo,plne,sfdzf,vhla,xghbfvjwng,xzwliqlonx,yxxnjoqiat\n", + " : Should be anwmdjub,ashtnpk,brgumx,chltw,cyktsje,dzlxzvuv,hfmxvxu,hylyemx,kovd,kvenp,lwmieu,muvqsgo,plne,sfdzf,vhla,xghbfvjwng,xzwliqlonx,yxxnjoqiat\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cpzcvp, jslmf, nnjprxtrl, oyvb, qlweqgt, qrifngx[30 chars]uqvi' != 'cpzcvp,jslmf,nnjprxtrl,oyvb,qlweqgt,qrifngxqp,rg[21 chars]uqvi'\n", + "- cpzcvp, jslmf, nnjprxtrl, oyvb, qlweqgt, qrifngxqp, rgzpmctp, rsjnd, ujgod, yquqvi\n", + "? - - - - - - - - -\n", + "+ cpzcvp,jslmf,nnjprxtrl,oyvb,qlweqgt,qrifngxqp,rgzpmctp,rsjnd,ujgod,yquqvi\n", + " : Should be cpzcvp,jslmf,nnjprxtrl,oyvb,qlweqgt,qrifngxqp,rgzpmctp,rsjnd,ujgod,yquqvi\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'fsffpyv, gmybabtpde, kbnupyuxo, voiw' != 'fsffpyv,gmybabtpde,kbnupyuxo,voiw'\n", + "- fsffpyv, gmybabtpde, kbnupyuxo, voiw\n", + "? - - -\n", + "+ fsffpyv,gmybabtpde,kbnupyuxo,voiw\n", + " : Should be fsffpyv,gmybabtpde,kbnupyuxo,voiw\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'baouzcq, dptlemcbc, ewubm, fguqp, fujgxbjhzn, iss[123 chars]zjac' != 'baouzcq,dptlemcbc,ewubm,fguqp,fujgxbjhzn,issyzc,k[105 chars]zjac'\n", + "- baouzcq, dptlemcbc, ewubm, fguqp, fujgxbjhzn, issyzc, kkajcc, pafusije, pxjzrhmd, sszdrfggn, szsqgqffq, umrg, unocw, uqcgbv, vnmsckqgu, wpkvbvm, xngidlkfz, ychiherd, yvvxsyzjac\n", + "? - - - - - - - - - - - - - - - - - -\n", + "+ baouzcq,dptlemcbc,ewubm,fguqp,fujgxbjhzn,issyzc,kkajcc,pafusije,pxjzrhmd,sszdrfggn,szsqgqffq,umrg,unocw,uqcgbv,vnmsckqgu,wpkvbvm,xngidlkfz,ychiherd,yvvxsyzjac\n", + " : Should be baouzcq,dptlemcbc,ewubm,fguqp,fujgxbjhzn,issyzc,kkajcc,pafusije,pxjzrhmd,sszdrfggn,szsqgqffq,umrg,unocw,uqcgbv,vnmsckqgu,wpkvbvm,xngidlkfz,ychiherd,yvvxsyzjac\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'dhkydnala, fkdl, fqyjog, ivrksgewu, jfkomst, kwjdk, nryn, zslobzyf' != 'dhkydnala,fkdl,fqyjog,ivrksgewu,jfkomst,kwjdk,nryn,zslobzyf'\n", + "- dhkydnala, fkdl, fqyjog, ivrksgewu, jfkomst, kwjdk, nryn, zslobzyf\n", + "? - - - - - - -\n", + "+ dhkydnala,fkdl,fqyjog,ivrksgewu,jfkomst,kwjdk,nryn,zslobzyf\n", + " : Should be dhkydnala,fkdl,fqyjog,ivrksgewu,jfkomst,kwjdk,nryn,zslobzyf\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'fpxvcdhnq, jrphfvu, lsbyc, njpi, nmzwtxytbe, ohedobco, skokpennle' != 'fpxvcdhnq,jrphfvu,lsbyc,njpi,nmzwtxytbe,ohedobco,skokpennle'\n", + "- fpxvcdhnq, jrphfvu, lsbyc, njpi, nmzwtxytbe, ohedobco, skokpennle\n", + "? - - - - - -\n", + "+ fpxvcdhnq,jrphfvu,lsbyc,njpi,nmzwtxytbe,ohedobco,skokpennle\n", + " : Should be fpxvcdhnq,jrphfvu,lsbyc,njpi,nmzwtxytbe,ohedobco,skokpennle\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cctiaztq, ekngkqe, gdqg, hkcm, icysj, inkj, mlho, [79 chars]umpo' != 'cctiaztq,ekngkqe,gdqg,hkcm,icysj,inkj,mlho,nchphbb[64 chars]umpo'\n", + "- cctiaztq, ekngkqe, gdqg, hkcm, icysj, inkj, mlho, nchphbbt, npnsy, onwe, vhbmmvwxpi, wttjyvflbj, wzdjjxqsc, xartsmk, xugxps, xvazumpo\n", + "? - - - - - - - - - - - - - - -\n", + "+ cctiaztq,ekngkqe,gdqg,hkcm,icysj,inkj,mlho,nchphbbt,npnsy,onwe,vhbmmvwxpi,wttjyvflbj,wzdjjxqsc,xartsmk,xugxps,xvazumpo\n", + " : Should be cctiaztq,ekngkqe,gdqg,hkcm,icysj,inkj,mlho,nchphbbt,npnsy,onwe,vhbmmvwxpi,wttjyvflbj,wzdjjxqsc,xartsmk,xugxps,xvazumpo\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cthomilr, djmxhlqncw, edjbtmvnt, esza, fagylfasg, [156 chars]zeeb' != 'cthomilr,djmxhlqncw,edjbtmvnt,esza,fagylfasg,gqjrm[133 chars]zeeb'\n", + "- cthomilr, djmxhlqncw, edjbtmvnt, esza, fagylfasg, gqjrmpadnw, gukch, hahnel, hjcsbcq, jbtwte, jffe, jrygidd, lfmgeupuj, nxdjvybmc, oyjjnguio, qsvje, srabo, tkxlwl, ulwhcu, utyk, vmwuztczrr, wiuy, yjuha, zunzeeb\n", + "? - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ cthomilr,djmxhlqncw,edjbtmvnt,esza,fagylfasg,gqjrmpadnw,gukch,hahnel,hjcsbcq,jbtwte,jffe,jrygidd,lfmgeupuj,nxdjvybmc,oyjjnguio,qsvje,srabo,tkxlwl,ulwhcu,utyk,vmwuztczrr,wiuy,yjuha,zunzeeb\n", + " : Should be cthomilr,djmxhlqncw,edjbtmvnt,esza,fagylfasg,gqjrmpadnw,gukch,hahnel,hjcsbcq,jbtwte,jffe,jrygidd,lfmgeupuj,nxdjvybmc,oyjjnguio,qsvje,srabo,tkxlwl,ulwhcu,utyk,vmwuztczrr,wiuy,yjuha,zunzeeb\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'arhdfti, brhz, czgchdyw, ewyzzp, fwiqqyomo, jvsc,[38 chars]wrtn' != 'arhdfti,brhz,czgchdyw,ewyzzp,fwiqqyomo,jvsc,mucsc[29 chars]wrtn'\n", + "- arhdfti, brhz, czgchdyw, ewyzzp, fwiqqyomo, jvsc, mucscujkeb, oldpewde, pagzjijcfw, yulwrtn\n", + "? - - - - - - - - -\n", + "+ arhdfti,brhz,czgchdyw,ewyzzp,fwiqqyomo,jvsc,mucscujkeb,oldpewde,pagzjijcfw,yulwrtn\n", + " : Should be arhdfti,brhz,czgchdyw,ewyzzp,fwiqqyomo,jvsc,mucscujkeb,oldpewde,pagzjijcfw,yulwrtn\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'adovujplna, aibfa, bmwelan, coyp, dnbccjn, fdydluark[114 chars]pcka' != 'adovujplna,aibfa,bmwelan,coyp,dnbccjn,fdydluarkb,ggb[97 chars]pcka'\n", + "- adovujplna, aibfa, bmwelan, coyp, dnbccjn, fdydluarkb, ggbfyvez, gtho, hjlcxdznwg, idwanm, jnzxzjwscg, jyuhgwyv, kyexvfwouj, lidtvyv, ncuyepc, tibdoru, wfubgyy, zzrlopcka\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ adovujplna,aibfa,bmwelan,coyp,dnbccjn,fdydluarkb,ggbfyvez,gtho,hjlcxdznwg,idwanm,jnzxzjwscg,jyuhgwyv,kyexvfwouj,lidtvyv,ncuyepc,tibdoru,wfubgyy,zzrlopcka\n", + " : Should be adovujplna,aibfa,bmwelan,coyp,dnbccjn,fdydluarkb,ggbfyvez,gtho,hjlcxdznwg,idwanm,jnzxzjwscg,jyuhgwyv,kyexvfwouj,lidtvyv,ncuyepc,tibdoru,wfubgyy,zzrlopcka\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'cvxjrqge, iywbvd, mtlv, yzosf' != 'cvxjrqge,iywbvd,mtlv,yzosf'\n", + "- cvxjrqge, iywbvd, mtlv, yzosf\n", + "? - - -\n", + "+ cvxjrqge,iywbvd,mtlv,yzosf\n", + " : Should be cvxjrqge,iywbvd,mtlv,yzosf\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'aijubemajm, antq, azloi, cnstw, drhugiskh, ekdb, fqo[75 chars]uwjb' != 'aijubemajm,antq,azloi,cnstw,drhugiskh,ekdb,fqopww,gl[60 chars]uwjb'\n", + "- aijubemajm, antq, azloi, cnstw, drhugiskh, ekdb, fqopww, glppril, hrvmxtkw, ixteiv, kolg, lxycyqsxfh, ojltdtr, yhsgwzj, yjhk, yuwjb\n", + "? - - - - - - - - - - - - - - -\n", + "+ aijubemajm,antq,azloi,cnstw,drhugiskh,ekdb,fqopww,glppril,hrvmxtkw,ixteiv,kolg,lxycyqsxfh,ojltdtr,yhsgwzj,yjhk,yuwjb\n", + " : Should be aijubemajm,antq,azloi,cnstw,drhugiskh,ekdb,fqopww,glppril,hrvmxtkw,ixteiv,kolg,lxycyqsxfh,ojltdtr,yhsgwzj,yjhk,yuwjb\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'anevoielm, azqgimc, bmjxwhfl, dnjjp, epadhqzjov, ic[128 chars]kvwg' != 'anevoielm,azqgimc,bmjxwhfl,dnjjp,epadhqzjov,icaofin[110 chars]kvwg'\n", + "- anevoielm, azqgimc, bmjxwhfl, dnjjp, epadhqzjov, icaofinej, kjhjlhlx, lfinnung, myxci, nbmvcrljni, nimruouwuk, ogim, rmhaj, spktfpqmtp, spxihro, uxczjm, vmbqmpsi, vqapusjc, xrgthjkvwg\n", + "? - - - - - - - - - - - - - - - - - -\n", + "+ anevoielm,azqgimc,bmjxwhfl,dnjjp,epadhqzjov,icaofinej,kjhjlhlx,lfinnung,myxci,nbmvcrljni,nimruouwuk,ogim,rmhaj,spktfpqmtp,spxihro,uxczjm,vmbqmpsi,vqapusjc,xrgthjkvwg\n", + " : Should be anevoielm,azqgimc,bmjxwhfl,dnjjp,epadhqzjov,icaofinej,kjhjlhlx,lfinnung,myxci,nbmvcrljni,nimruouwuk,ogim,rmhaj,spktfpqmtp,spxihro,uxczjm,vmbqmpsi,vqapusjc,xrgthjkvwg\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'fopvzunww, iccjjlzej, ihwhzyn, iklovrlu, kvgexz, li[121 chars]pzjy' != 'fopvzunww,iccjjlzej,ihwhzyn,iklovrlu,kvgexz,lisupsm[104 chars]pzjy'\n", + "- fopvzunww, iccjjlzej, ihwhzyn, iklovrlu, kvgexz, lisupsmw, mgfngyjovr, migxxqze, nghaeupreg, ryijgmr, tnbwcd, ucbbnzjou, vnvalggq, vraceinh, wqbfli, xczjhghhie, yhwrhua, yppzjy\n", + "? - - - - - - - - - - - - - - - - -\n", + "+ fopvzunww,iccjjlzej,ihwhzyn,iklovrlu,kvgexz,lisupsmw,mgfngyjovr,migxxqze,nghaeupreg,ryijgmr,tnbwcd,ucbbnzjou,vnvalggq,vraceinh,wqbfli,xczjhghhie,yhwrhua,yppzjy\n", + " : Should be fopvzunww,iccjjlzej,ihwhzyn,iklovrlu,kvgexz,lisupsmw,mgfngyjovr,migxxqze,nghaeupreg,ryijgmr,tnbwcd,ucbbnzjou,vnvalggq,vraceinh,wqbfli,xczjhghhie,yhwrhua,yppzjy\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'bflk, dyevwiebc, ejgslorpac, hyhvj, iqplrpd, q[30 chars]vnst' != 'bflk,dyevwiebc,ejgslorpac,hyhvj,iqplrpd,qlsjak[22 chars]vnst'\n", + "- bflk, dyevwiebc, ejgslorpac, hyhvj, iqplrpd, qlsjakfktv, sraet, tmqwelojpv, vnst\n", + "? - - - - - - - -\n", + "+ bflk,dyevwiebc,ejgslorpac,hyhvj,iqplrpd,qlsjakfktv,sraet,tmqwelojpv,vnst\n", + " : Should be bflk,dyevwiebc,ejgslorpac,hyhvj,iqplrpd,qlsjakfktv,sraet,tmqwelojpv,vnst\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'atkgk, bslriu, bwuwf, cksognl, dleeu, fcdlmab, [133 chars]itav' != 'atkgk,bslriu,bwuwf,cksognl,dleeu,fcdlmab,lfdauw[113 chars]itav'\n", + "- atkgk, bslriu, bwuwf, cksognl, dleeu, fcdlmab, lfdauwf, mipe, pavifwfuxa, prrqlzagdu, sqlmaz, tmjydwu, txzrtjpgo, tyllt, ucpjjcicx, uidb, urukatf, vkzlbqsn, vuzin, wyfahfgc, xyvsypitav\n", + "? - - - - - - - - - - - - - - - - - - - -\n", + "+ atkgk,bslriu,bwuwf,cksognl,dleeu,fcdlmab,lfdauwf,mipe,pavifwfuxa,prrqlzagdu,sqlmaz,tmjydwu,txzrtjpgo,tyllt,ucpjjcicx,uidb,urukatf,vkzlbqsn,vuzin,wyfahfgc,xyvsypitav\n", + " : Should be atkgk,bslriu,bwuwf,cksognl,dleeu,fcdlmab,lfdauwf,mipe,pavifwfuxa,prrqlzagdu,sqlmaz,tmjydwu,txzrtjpgo,tyllt,ucpjjcicx,uidb,urukatf,vkzlbqsn,vuzin,wyfahfgc,xyvsypitav\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'acgsrbw, bedxcqpccl, cqhosfs, djsu, dkdcuh, dohrb[154 chars]zoqu' != 'acgsrbw,bedxcqpccl,cqhosfs,djsu,dkdcuh,dohrbth,ff[131 chars]zoqu'\n", + "- acgsrbw, bedxcqpccl, cqhosfs, djsu, dkdcuh, dohrbth, ffegllmfcv, fpplktex, grjhwq, gwfnhec, ijvi, kffrrztu, kxdavfwz, lgsj, mxdrifio, oormp, paggjsqtr, rjpkc, ssshyuhe, xmzlvukng, ykmuciw, zihc, zjwphm, zoqu\n", + "? - - - - - - - - - - - - - - - - - - - - - - -\n", + "+ acgsrbw,bedxcqpccl,cqhosfs,djsu,dkdcuh,dohrbth,ffegllmfcv,fpplktex,grjhwq,gwfnhec,ijvi,kffrrztu,kxdavfwz,lgsj,mxdrifio,oormp,paggjsqtr,rjpkc,ssshyuhe,xmzlvukng,ykmuciw,zihc,zjwphm,zoqu\n", + " : Should be acgsrbw,bedxcqpccl,cqhosfs,djsu,dkdcuh,dohrbth,ffegllmfcv,fpplktex,grjhwq,gwfnhec,ijvi,kffrrztu,kxdavfwz,lgsj,mxdrifio,oormp,paggjsqtr,rjpkc,ssshyuhe,xmzlvukng,ykmuciw,zihc,zjwphm,zoqu\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'ccdygth, cguybyom, djjgoonn, epoa, gghlfglxrq, gi[142 chars]zugm' != 'ccdygth,cguybyom,djjgoonn,epoa,gghlfglxrq,gidatzr[121 chars]zugm'\n", + "- ccdygth, cguybyom, djjgoonn, epoa, gghlfglxrq, gidatzrc, hiibghkns, hqfijlwkak, mihxryem, nbvvcbhcu, ncqulfv, qcyzl, qwqd, rabwmyp, rlam, sdbv, sqrnscpggq, tbwjnp, vmcfac, vsrcf, vugdsrm, ytrzugm\n", + "? - - - - - - - - - - - - - - - - - - - - -\n", + "+ ccdygth,cguybyom,djjgoonn,epoa,gghlfglxrq,gidatzrc,hiibghkns,hqfijlwkak,mihxryem,nbvvcbhcu,ncqulfv,qcyzl,qwqd,rabwmyp,rlam,sdbv,sqrnscpggq,tbwjnp,vmcfac,vsrcf,vugdsrm,ytrzugm\n", + " : Should be ccdygth,cguybyom,djjgoonn,epoa,gghlfglxrq,gidatzrc,hiibghkns,hqfijlwkak,mihxryem,nbvvcbhcu,ncqulfv,qcyzl,qwqd,rabwmyp,rlam,sdbv,sqrnscpggq,tbwjnp,vmcfac,vsrcf,vugdsrm,ytrzugm\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_alpha..TestKnown.runTest)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"c:\\Users\\Chantal Silva\\OneDrive\\Escritorio\\Ironhack\\Week 1\\Day 3\\lab-functions-en\\mod\\testing.py\", line 187, in runTest\n", + " self.assertEqual(fn(self.input), self.output, f\"Should be {self.output}\")\n", + " ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n", + "AssertionError: 'egthjycrb, hzkubwmavf, iqjh, jeta, ltpqkpt, mnbpa, [73 chars]qdom' != 'egthjycrb,hzkubwmavf,iqjh,jeta,ltpqkpt,mnbpa,nljwkn[58 chars]qdom'\n", + "- egthjycrb, hzkubwmavf, iqjh, jeta, ltpqkpt, mnbpa, nljwknhu, oultrbewf, qxzasp, rojwu, roois, swky, ukkv, uvxfp, vnrk, wcspvqdom\n", + "? - - - - - - - - - - - - - - -\n", + "+ egthjycrb,hzkubwmavf,iqjh,jeta,ltpqkpt,mnbpa,nljwknhu,oultrbewf,qxzasp,rojwu,roois,swky,ukkv,uvxfp,vnrk,wcspvqdom\n", + " : Should be egthjycrb,hzkubwmavf,iqjh,jeta,ltpqkpt,mnbpa,nljwknhu,oultrbewf,qxzasp,rojwu,roois,swky,ukkv,uvxfp,vnrk,wcspvqdom\n", + "\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.530s\n", + "\n", + "FAILED (failures=100)\n" + ] + } + ], "source": [ "# This will test your function \n", "test_alpha(sort_alpha)" @@ -535,19 +2563,64 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 127, "metadata": {}, "outputs": [], "source": [ + "import re\n", + "\n", "def check_pass(password):\n", + " if len(password) < 8:\n", + " return False\n", + " \n", + " has_lower = re.search(r'[a-z]', password)\n", + " has_upper = re.search(r'[A-Z]', password)\n", + " has_digit = re.search(r'[0-9]', password)\n", + " has_special = re.search(r'[!@#$%^&*(),.?\":{}|<>]', password)\n", + "\n", + " return all([has_lower, has_upper, has_digit, has_special])\n", "#your code here" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 128, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n", + "False\n" + ] + } + ], + "source": [ + "password = \"StrongPass1!\"\n", + "print(check_pass(password)) # Output: True\n", + "\n", + "password = \"weak\"\n", + "print(check_pass(password)) # Output: False" + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.099s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_pass(check_pass)"