Commit cfd81fc4 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix unit test for static members in singleton.

This got broken by previous commit that added printing of filename.
parent 3ebf89c7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -73,12 +73,12 @@ describe JsDuck::Class do
          :singleton => true,
          :members => {
            :method => [
              {:name => "sing", :owner => "Singleton"},
              {:name => "sing", :owner => "Singleton", :files => [{}]},
            ]
          },
          :statics => {
            :method => [
              {:name => "singStat", :owner => "Singleton"},
              {:name => "singStat", :owner => "Singleton", :files => [{}]},
            ]
          }
        });