We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545b8b0 commit fc23d61Copy full SHA for fc23d61
launchd/tests/plist.py
@@ -78,4 +78,7 @@ def test_read_write(self):
78
self.assertTrue(os.path.isfile(fname))
79
props = plist.read(sample_label, plist.USER)
80
self.assertEqual(sample_props, props)
81
- os.unlink(fname)
+
82
+ # read it without specifying the scope:
83
+ props = plist.read(sample_label)
84
+ self.assertEqual(sample_props, props)
0 commit comments