tests/integration/update.bats: simplify file creation

There's no need for an intermediate variable

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin 2020-03-30 15:04:12 -07:00
parent b8b46419ce
commit 3dfa5434fc
1 changed files with 1 additions and 3 deletions

View File

@ -164,7 +164,7 @@ EOF
check_cgroup_value "pids.max" 10
# reset to initial test value via json file
DATA=$(cat <<"EOF"
cat << EOF > $BATS_TMPDIR/runc-cgroups-integration-test.json
{
"memory": {
"limit": 33554432,
@ -181,8 +181,6 @@ EOF
}
}
EOF
)
echo $DATA > $BATS_TMPDIR/runc-cgroups-integration-test.json
runc update -r $BATS_TMPDIR/runc-cgroups-integration-test.json test_update
[ "$status" -eq 0 ]