diff --git a/support/testing/tests/package/sample_python_gobject.py b/support/testing/tests/package/sample_python_gobject.py index ecce0b0575..50564aa79f 100644 --- a/support/testing/tests/package/sample_python_gobject.py +++ b/support/testing/tests/package/sample_python_gobject.py @@ -2,11 +2,13 @@ """A simple test that uses python-gobject to find the path of sh.""" from gi.repository import GLib + def main(): sh_path = GLib.find_program_in_path('sh') if sh_path == "/bin/sh": - return True + return True return False + if __name__ == '__main__': main()