Skip to content

Commit

Permalink
PTFM-38891 Fix allowedExecutables default value (#1417)
Browse files Browse the repository at this point in the history
changed in apiserver
  • Loading branch information
durae authored Nov 21, 2024
1 parent 6c737fb commit 5de0e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/test/test_dxpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def test_update_describe(self):
desc = dxproject.describe()
self.assertEqual(desc["restricted"], False)
self.assertEqual(desc["downloadRestricted"], False)
self.assertTrue("allowedExecutables" not in desc)
self.assertEqual(desc["allowedExecutables"], None)
self.assertEqual(desc["databaseResultsRestricted"], None)

def test_new_list_remove_folders(self):
Expand Down

0 comments on commit 5de0e03

Please sign in to comment.