Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/test_dockerprettyps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Unit Tests for docker-pretty-ps

"""
import copy
from datetime import datetime, timedelta
import os

Expand Down Expand Up @@ -343,7 +344,7 @@ def test_give_json(self):
Tests the dockerprettyps.give_json() method, making sure we output the same data we would normally, but in JSON.

"""
containers = test_ps_data.ps_containers
containers = copy.deepcopy(test_ps_data.ps_containers)
the_json = dockerprettyps.give_json(containers, CliArgs())
assert the_json

Expand Down