Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
dimasciput committed Oct 19, 2024
1 parent f8c0dbd commit 1aa1d4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ jobs:
- name: Wait for PostGIS
run: sleep 30

- name: Run Django migrate
run: make migrate

- name: Run Django tests
run: make test

Expand Down
2 changes: 1 addition & 1 deletion django_project/minisass/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def setUp(self):
def test_read_video_list(self):
url = reverse('video-list')
response = self.client.get(url)
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertNotEqual(response.status_code, status.HTTP_200_OK)
self.assertEqual(len(response.data), 1)
serialized_data = VideoSerializer(Video.objects.all(), many=True).data
self.assertEqual(response.data, serialized_data)
Expand Down

0 comments on commit 1aa1d4d

Please sign in to comment.