We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 0169ed1 commit 63d61f6Copy full SHA for 63d61f6
st2api/tests/unit/controllers/v1/test_packs_views.py
@@ -133,7 +133,7 @@ def test_get_pack_files_and_pack_file_ref_doesnt_equal_pack_name(self):
133
# Ref is not equal to the name, controller should still work
134
resp = self.app.get("/v1/packs/views/files/dummy_pack_16")
135
self.assertEqual(resp.status_int, http_client.OK)
136
- self.assertEqual(len(resp.json), 3)
+ self.assertEqual(len(resp.json), 4)
137
self.assertIn("pack.yaml", [f["file_path"] for f in resp.json])
138
139
resp = self.app.get("/v1/packs/views/file/dummy_pack_16/pack.yaml")
0 commit comments