diff options
| author | David Sterba <[email protected]> | 2018-05-16 22:00:44 +0000 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2018-05-29 16:12:52 +0000 |
| commit | 315b76b46232758836f2d431e0963567f796116f (patch) | |
| tree | b7b9ae5e9dce42de9c25744f4461c110c6b82dc9 /fs/btrfs/tests/extent-buffer-tests.c | |
| parent | btrfs: tests: add helper for error messages and update them (diff) | |
| download | kernel-315b76b46232758836f2d431e0963567f796116f.tar.gz kernel-315b76b46232758836f2d431e0963567f796116f.zip | |
btrfs: tests: drop newline from test_msg strings
Now that test_err strings do not need the newline, remove them also from
the test_msg.
Signed-off-by: David Sterba <[email protected]>
Diffstat (limited to 'fs/btrfs/tests/extent-buffer-tests.c')
| -rw-r--r-- | fs/btrfs/tests/extent-buffer-tests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/tests/extent-buffer-tests.c b/fs/btrfs/tests/extent-buffer-tests.c index 2fa440cf7874..7d72eab6d32c 100644 --- a/fs/btrfs/tests/extent-buffer-tests.c +++ b/fs/btrfs/tests/extent-buffer-tests.c @@ -26,7 +26,7 @@ static int test_btrfs_split_item(u32 sectorsize, u32 nodesize) u32 value_len = strlen(value); int ret = 0; - test_msg("running btrfs_split_item tests\n"); + test_msg("running btrfs_split_item tests"); fs_info = btrfs_alloc_dummy_fs_info(nodesize, sectorsize); if (!fs_info) { @@ -220,6 +220,6 @@ out: int btrfs_test_extent_buffer_operations(u32 sectorsize, u32 nodesize) { - test_msg("running extent buffer operation tests\n"); + test_msg("running extent buffer operation tests"); return test_btrfs_split_item(sectorsize, nodesize); } |
