In order to fully match the regular expression, you need to bind at the beginning and end of the line with ^ and $ :
$ awk '/^hello10$/' test.txt hello10
But you are not using any regex functions next to the binding we just added, which means that you really want a simple string comparison:
$ awk '$0=="hello10"' test.txt hello10
source share