Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 63d61f6

Browse files
committedSep 20, 2022
Bump file count in fixture pack to account for BUILD file
1 parent 0169ed1 commit 63d61f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎st2api/tests/unit/controllers/v1/test_packs_views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def test_get_pack_files_and_pack_file_ref_doesnt_equal_pack_name(self):
133133
# Ref is not equal to the name, controller should still work
134134
resp = self.app.get("/v1/packs/views/files/dummy_pack_16")
135135
self.assertEqual(resp.status_int, http_client.OK)
136-
self.assertEqual(len(resp.json), 3)
136+
self.assertEqual(len(resp.json), 4)
137137
self.assertIn("pack.yaml", [f["file_path"] for f in resp.json])
138138

139139
resp = self.app.get("/v1/packs/views/file/dummy_pack_16/pack.yaml")

0 commit comments

Comments
 (0)
Please sign in to comment.