MIME Type, Cannot reach 100%

Hi,on the puzzle MIME Type, all test are ok but when I submit, I only get 91% and it says :

“The following validators differ from the puzzle test cases to prevent
hard coded solutions. This is why you can have some fails here even if
all of the tests provided in the IDE have been successfully passed.”

But how can I resolve my puzzle without any test ? And there is not hardcode at all…

The tests : http://prntscr.com/99m0ks

The submit : http://prntscr.com/99m1mg

Do you respect the following rule?

If the extension for a given file can be found in the association table
(case insensitive, e.g. TXT is treated the same way as txt) then print the corresponding MIME type.

Yes, I did this :
#python

if(fExtension.lower() in extentions):
        type = extentions[fExtension.lower()]
    elif(fExtension.upper() in extentions):
        type = extentions[fExtension.upper()]

Why not changing all extensions to lower-case?

I thought we can’t ^^
It works, thank you :slight_smile:

TxT is neither lower nor upper :).

Didn’t know that :slight_smile:
Thanks