Fix spec for GeoNodeStatusEntity serializer

parent 75213f33
...@@ -4,13 +4,14 @@ describe GeoNodeStatusEntity, :postgresql do ...@@ -4,13 +4,14 @@ describe GeoNodeStatusEntity, :postgresql do
let(:geo_node_status) do let(:geo_node_status) do
GeoNodeStatus.new( GeoNodeStatus.new(
id: 1, id: 1,
health: nil, health: '',
attachments_count: 329, attachments_count: 329,
attachments_synced_count: 141, attachments_synced_count: 141,
lfs_objects_count: 256, lfs_objects_count: 256,
lfs_objects_synced_count: 123, lfs_objects_synced_count: 123,
repositories_count: 10, repositories_count: 10,
repositories_synced_count: 5 repositories_synced_count: 5,
repositories_failed_count: 0
) )
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment