Skip to content

Commit

Permalink
Minor stylistic fix in the deconvolution test.
Browse files Browse the repository at this point in the history
  • Loading branch information
sesse committed Oct 13, 2012
1 parent a18d86c commit cf301ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deconvolution_sharpen_effect_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "gtest/gtest.h"
#include "deconvolution_sharpen_effect.h"

TEST(DeconvolutionSharpenEffect, IdentityTransformDoesNothing) {
TEST(DeconvolutionSharpenEffectTest, IdentityTransformDoesNothing) {
const int size = 4;

float data[size * size] = {
Expand All @@ -27,7 +27,7 @@ TEST(DeconvolutionSharpenEffect, IdentityTransformDoesNothing) {
expect_equal(data, out_data, size, size);
}

TEST(DeconvolutionSharpenEffect, DeconvolvesCircularBlur) {
TEST(DeconvolutionSharpenEffectTest, DeconvolvesCircularBlur) {
const int size = 13;

// Matches exactly a circular blur kernel with radius 2.0.
Expand Down Expand Up @@ -76,7 +76,7 @@ TEST(DeconvolutionSharpenEffect, DeconvolvesCircularBlur) {
expect_equal(expected_data, out_data, size, size, 0.15f, 0.005f);
}

TEST(DeconvolutionSharpenEffect, DeconvolvesGaussianBlur) {
TEST(DeconvolutionSharpenEffectTest, DeconvolvesGaussianBlur) {
const int size = 13;
const float sigma = 0.5f;

Expand Down Expand Up @@ -125,7 +125,7 @@ TEST(DeconvolutionSharpenEffect, DeconvolvesGaussianBlur) {
expect_equal(expected_data, out_data, size, size);
}

TEST(DeconvolutionSharpenEffect, NoiseAndCorrelationControlsReduceNoiseBoosting) {
TEST(DeconvolutionSharpenEffectTest, NoiseAndCorrelationControlsReduceNoiseBoosting) {
const int size = 13;
const float sigma = 0.5f;

Expand Down

0 comments on commit cf301ab

Please sign in to comment.