diff --git a/Magick++/tests/attributes.cpp b/Magick++/tests/attributes.cpp index 67ba3202a5..11f70ba692 100644 --- a/Magick++/tests/attributes.cpp +++ b/Magick++/tests/attributes.cpp @@ -1373,32 +1373,6 @@ int main( int /*argc*/, char ** argv) << ", verbose is not false as expected" << endl; } - // - // view - // - if ( image.view().length() != 0 ) - { - ++failures; - cout << "Line: " << __LINE__ - << ", view default is not empty string as expected" << endl; - } - - image.view("How now brown cow?"); - if ( image.view() != "How now brown cow?" ) - { - ++failures; - cout << "Line: " << __LINE__ - << ", view set/get failed" << endl; - } - - image.view( string() ); - if ( image.view().length() != 0 ) - { - ++failures; - cout << "Line: " << __LINE__ - << ", view failed to unset" << endl; - } - // // x11Display //