Simple changes some of the python test related files. I converted from the old % format, ex: "test %s" % "hello" to the new str.format: "test {}".format("hello")
This is more modern, as well as more consistent with the rest of the codebase (I have looked around and seen str.format used)