Ok, so I debuggged, but it looks like more than a spacing issue. In my execution, the contents you are asserting against do not contain the expected text. So I need you to look into it after all. I&#39;ve @Ignored the test for now, so you&#39;ll need to remove that annotation to get the test to run again.<br>
<br>Looks like the &#39;int type&#39; is not getting generated somehow? Possibly because it is a primitive type? Same thing happened when I commented that out - it then began failing on the boolean field.<br><br>It&#39;s possible that I caused this with some of the updates to the JavaParser, but I&#39;m not exactly sure where or why, so if you could give me some insight that would be great, Thanks!<br>
<br><b>Contents</b><br><br><div style="margin-left:40px">&lt;?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39; ?&gt;<br>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;<br>
&lt;ui:composition xmlns=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;<br>    xmlns:h=&quot;<a href="http://java.sun.com/jsf/html">http://java.sun.com/jsf/html</a>&quot;<br>    xmlns:f=&quot;<a href="http://java.sun.com/jsf/core">http://java.sun.com/jsf/core</a>&quot;<br>
    xmlns:ui=&quot;<a href="http://java.sun.com/jsf/facelets">http://java.sun.com/jsf/facelets</a>&quot;<br>    template=&quot;/resources/scaffold/page.xhtml&quot;&gt;<br><br>    &lt;f:metadata&gt;<br>        &lt;f:viewParam name=&quot;page&quot; value=&quot;#{petBean.page}&quot;/&gt;<br>
        &lt;f:event type=&quot;preRenderView&quot; listener=&quot;#{petBean.paginate}&quot;/&gt;<br>    &lt;/f:metadata&gt;<br><br>    &lt;ui:param name=&quot;pageTitle&quot; value=&quot;Search Pet entities&quot;/&gt;<br>
<br>    &lt;ui:define name=&quot;header&quot;&gt;<br>        Pet<br>    &lt;/ui:define&gt;<br><br>    &lt;ui:define name=&quot;subheader&quot;&gt;<br>        Search Pet entities<br>    &lt;/ui:define&gt;<br><br>    &lt;ui:define name=&quot;footer&quot;/&gt;<br>
<br>    &lt;ui:define name=&quot;main&quot;&gt;<br>        &lt;h:form id=&quot;search&quot;&gt;<br>            &lt;h:panelGroup styleClass=&quot;search&quot;&gt;<br>                &lt;h:messages globalOnly=&quot;true&quot;/&gt;<br>
<br>                &lt;h:panelGrid columnClasses=&quot;label,component,required&quot; columns=&quot;3&quot;&gt;<br>                    &lt;h:outputLabel for=&quot;petBeanSearchName&quot; value=&quot;Name:&quot;/&gt;<br>                    &lt;h:panelGroup&gt;<br>
                        &lt;h:inputText id=&quot;petBeanSearchName&quot; value=&quot;#{<a href="http://petBean.search.name">petBean.search.name</a>}&quot;/&gt;<br>                        &lt;h:message for=&quot;petBeanSearchName&quot; styleClass=&quot;error&quot;/&gt;<br>
                    &lt;/h:panelGroup&gt;<br>                    &lt;h:outputText/&gt;<br>                    &lt;h:outputLabel for=&quot;petBeanSearchOwner&quot; value=&quot;Owner:&quot;/&gt;<br>                    &lt;h:panelGroup&gt;<br>
                        &lt;h:selectOneMenu converter=&quot;#{ownerBean.converter}&quot; id=&quot;petBeanSearchOwner&quot; value=&quot;#{petBean.search.owner}&quot;&gt;<br>                            &lt;f:selectItem/&gt;<br>
                            &lt;f:selectItems value=&quot;#{ownerBean.all}&quot;/&gt;<br>                        &lt;/h:selectOneMenu&gt;<br>                        &lt;h:message for=&quot;petBeanSearchOwner&quot; styleClass=&quot;error&quot;/&gt;<br>
                    &lt;/h:panelGroup&gt;<br>                    &lt;h:outputText/&gt;<br>                &lt;/h:panelGrid&gt;<br>                &lt;h:panelGroup styleClass=&quot;buttons&quot;&gt;<br>                    &lt;h:commandLink value=&quot;Search&quot; action=&quot;#{petBean.search}&quot;/&gt;<br>
                    &lt;h:commandLink value=&quot;Create New&quot; action=&quot;#{petBean.create}&quot;/&gt;<br>                &lt;/h:panelGroup&gt;<br>            &lt;/h:panelGroup&gt;<br>            <br>            &lt;h:dataTable id=&quot;petBeanPageItems&quot; styleClass=&quot;data-table&quot; value=&quot;#{petBean.pageItems}&quot; var=&quot;_item&quot;&gt;<br>
                &lt;h:column&gt;<br>                    &lt;f:facet name=&quot;header&quot;&gt;<br>                        &lt;h:outputText value=&quot;Name&quot;/&gt;<br>                    &lt;/f:facet&gt;<br>                    &lt;h:link outcome=&quot;/scaffold/pet/view&quot; value=&quot;#{_<a href="http://item.name">item.name</a>}&quot;&gt;<br>
                        &lt;f:param name=&quot;id&quot; value=&quot;#{_<a href="http://item.id">item.id</a>}&quot;/&gt;<br>                    &lt;/h:link&gt;<br>                &lt;/h:column&gt;<br>                &lt;h:column&gt;<br>
                    &lt;f:facet name=&quot;header&quot;&gt;<br>                        &lt;h:outputText value=&quot;Type&quot;/&gt;<br>                    &lt;/f:facet&gt;<br>                    &lt;h:link outcome=&quot;/scaffold/pet/view&quot; value=&quot;#{_item.type}&quot;&gt;<br>
                        &lt;f:param name=&quot;id&quot; value=&quot;#{_<a href="http://item.id">item.id</a>}&quot;/&gt;<br>                    &lt;/h:link&gt;<br>                &lt;/h:column&gt;<br>                &lt;h:column&gt;<br>
                    &lt;f:facet name=&quot;header&quot;&gt;<br>                        &lt;h:outputText value=&quot;Send Reminders&quot;/&gt;<br>                    &lt;/f:facet&gt;<br>                    &lt;h:link outcome=&quot;/scaffold/pet/view&quot; value=&quot;#{_item.sendReminders}&quot;&gt;<br>
                        &lt;f:param name=&quot;id&quot; value=&quot;#{_<a href="http://item.id">item.id</a>}&quot;/&gt;<br>                    &lt;/h:link&gt;<br>                &lt;/h:column&gt;<br>                &lt;h:column&gt;<br>
                    &lt;f:facet name=&quot;header&quot;&gt;<br>                        &lt;h:outputText value=&quot;Owner&quot;/&gt;<br>                    &lt;/f:facet&gt;<br>                    &lt;h:link outcome=&quot;/scaffold/pet/view&quot; value=&quot;#{_item.owner}&quot;&gt;<br>
                        &lt;f:param name=&quot;id&quot; value=&quot;#{_<a href="http://item.id">item.id</a>}&quot;/&gt;<br>                    &lt;/h:link&gt;<br>                &lt;/h:column&gt;<br>            &lt;/h:dataTable&gt;<br>
            &lt;ui:include src=&quot;/resources/scaffold/paginator.xhtml&quot;&gt;<br>                &lt;ui:param name=&quot;paginatorBean&quot; value=&quot;#{petBean}&quot;/&gt;<br>            &lt;/ui:include&gt;<br>        &lt;/h:form&gt;<br>
            <br>    &lt;/ui:define&gt;<br><br>&lt;/ui:composition&gt;<br>
</div>